mirror of https://github.com/pixelfed/pixelfed
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
808 B
PHTML
29 lines
808 B
PHTML
7 years ago
|
@extends('layouts.app')
|
||
|
|
||
|
@section('content')
|
||
|
|
||
|
<div class="container">
|
||
|
<div class="col-12 col-md-6 offset-md-3">
|
||
|
|
||
|
<div class="card">
|
||
|
<div class="card-header font-weight-bold">New Status Post</div>
|
||
|
<div class="card-body">
|
||
|
<form>
|
||
|
<div class="form-group">
|
||
|
<label class="font-weight-bold text-muted small">Upload Image</label>
|
||
|
<input type="file" class="form-control-file">
|
||
|
</div>
|
||
|
<div class="form-group">
|
||
|
<label class="font-weight-bold text-muted small">Caption</label>
|
||
|
<input type="text" class="form-control" placeholder="Add a caption here">
|
||
|
</div>
|
||
|
<button type="submit" class="btn btn-primary">Submit</button>
|
||
|
</form>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
|
||
|
@endsection
|