2018-06-15 06:37:40 +00:00
< div class = " card card-md-rounded-0 " >
2018-08-10 04:24:42 +00:00
< div class = " card-header bg-white font-weight-bold " >
< div > {{ __ ( 'Create New Post' )}} </ div >
</ div >
2018-06-02 22:53:35 +00:00
< div class = " card-body " id = " statusForm " >
2018-08-10 04:24:42 +00:00
< form method = " post " action = " { { route('timeline.personal')}} " enctype = " multipart/form-data " >
2018-06-02 22:53:35 +00:00
@ csrf
2018-06-14 02:57:16 +00:00
< input type = " hidden " name = " filter_name " value = " " >
< input type = " hidden " name = " filter_class " value = " " >
2018-06-02 22:53:35 +00:00
< div class = " form-group " >
2018-08-10 04:24:42 +00:00
< div class = " custom-file " >
< input type = " file " class = " custom-file-input " id = " fileInput " name = " photo[] " accept = " image/* " multiple = " " >
< label class = " custom-file-label " for = " fileInput " > Upload Image ( s ) </ label >
</ div >
2018-06-02 22:53:35 +00:00
< small class = " form-text text-muted " >
2018-06-14 02:57:16 +00:00
Max Size : @ maxFileSize () . Supported formats : jpeg , png , gif , bmp . Limited to {{ config ( 'pixelfed.max_album_length' )}} photos per post .
2018-06-02 22:53:35 +00:00
</ small >
</ div >
< div class = " form-group " >
2018-08-10 04:24:42 +00:00
< textarea class = " form-control " name = " caption " placeholder = " Add a caption here " autocomplete = " off " data - limit = " { { config('pixelfed.max_caption_length')}} " rows = " 1 " ></ textarea >
< p class = " form-text text-muted small text-right " >
< span class = " caption-counter " > 0 </ span >
< span >/</ span >
< span > {{ config ( 'pixelfed.max_caption_length' )}} </ span >
</ p >
2018-06-02 22:53:35 +00:00
</ div >
2018-06-14 02:57:16 +00:00
< div class = " form-group " >
2018-08-10 04:24:42 +00:00
< button class = " btn btn-outline-primary btn-sm px-3 py-1 font-weight-bold " type = " button " data - toggle = " collapse " data - target = " #collapsePreview " aria - expanded = " false " aria - controls = " collapsePreview " >
Options & nbsp ; < i class = " fas fa-chevron-down " ></ i >
2018-06-14 02:57:16 +00:00
</ button >
< div class = " collapse " id = " collapsePreview " >
< div class = " form-group pt-3 " >
< label class = " font-weight-bold text-muted small " > CW / NSFW </ label >
< div class = " switch switch-sm " >
< input type = " checkbox " class = " switch " id = " cw-switch " name = " cw " >
< label for = " cw-switch " class = " small font-weight-bold " > ( Default off ) </ label >
</ div >
< small class = " form-text text-muted " >
Please mark all NSFW and controversial content , as per our content policy .
</ small >
</ div >
< div class = " form-group d-none form-preview " >
< label class = " font-weight-bold text-muted small " > Photo Preview </ label >
< figure class = " filterContainer " >
< img class = " filterPreview img-fluid " >
</ figure >
< small class = " form-text text-muted font-weight-bold " >
No filter selected .
</ small >
</ div >
< div class = " form-group d-none form-filters " >
< label for = " filterSelectDropdown " class = " font-weight-bold text-muted small " > Select Filter </ label >
< select class = " form-control " id = " filterSelectDropdown " >
< option value = " none " selected = " " > No Filter </ option >
</ select >
</ div >
2018-06-09 22:29:36 +00:00
</ div >
2018-06-14 02:57:16 +00:00
</ div >
2018-08-10 04:24:42 +00:00
< button type = " submit " class = " btn btn-outline-primary btn-block font-weight-bold " > Create Post </ button >
2018-06-02 22:53:35 +00:00
</ form >
</ div >
2018-06-14 02:57:16 +00:00
</ div >