mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
Add personal timeline blade template
This commit is contained in:
parent
411d4b9ab9
commit
c477cf9a9b
1 changed files with 29 additions and 0 deletions
29
resources/views/timeline/personal.blade.php
Normal file
29
resources/views/timeline/personal.blade.php
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
@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
|
Loading…
Reference in a new issue