mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-11 00:54:50 +00:00
Add HTML for modal timeline
This commit is contained in:
parent
3c11c1e3c4
commit
5ac4d6f423
1 changed files with 29 additions and 17 deletions
|
@ -17,21 +17,33 @@
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
@endif
|
@endif
|
||||||
<div class="card">
|
<div id="modal-text" class="d-none">
|
||||||
<div class="card-header font-weight-bold">New Post</div>
|
<div class="d-flex justify-content-between align-items-center">
|
||||||
<div class="card-body" id="statusForm">
|
<h4>Timeline</h4>
|
||||||
<form method="post" action="/timeline" enctype="multipart/form-data">
|
<button type="button" class="btn btn-link text-dark" data-toggle="modal" data-target="#modal-post">
|
||||||
@csrf
|
<span class="icon-plus"></span>
|
||||||
<div class="form-group">
|
</button>
|
||||||
<label class="font-weight-bold text-muted small">Upload Image</label>
|
</div>
|
||||||
<input type="file" class="form-control-file" name="photo">
|
</div>
|
||||||
|
<div tabindex="-1" role="dialog" id="modal-post" aria-hidden="true">
|
||||||
|
<div role="document" id="modal-dialog">
|
||||||
|
<div class="card">
|
||||||
|
<div class="card-header font-weight-bold">New Post</div>
|
||||||
|
<div class="card-body" id="statusForm">
|
||||||
|
<form method="post" action="/timeline" enctype="multipart/form-data">
|
||||||
|
@csrf
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="font-weight-bold text-muted small">Upload Image</label>
|
||||||
|
<input type="file" class="form-control-file" name="photo">
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="font-weight-bold text-muted small">Caption</label>
|
||||||
|
<input type="text" class="form-control" name="caption" placeholder="Add a caption here">
|
||||||
|
</div>
|
||||||
|
<button type="submit" class="btn btn-outline-primary btn-block">Post</button>
|
||||||
|
</form>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
</div>
|
||||||
<label class="font-weight-bold text-muted small">Caption</label>
|
|
||||||
<input type="text" class="form-control" name="caption" placeholder="Add a caption here">
|
|
||||||
</div>
|
|
||||||
<button type="submit" class="btn btn-outline-primary btn-block">Post</button>
|
|
||||||
</form>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue