123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <div class='element' id='postform' style=''>
- <div class='postform form' style='display:block;'>
- <div style='position:relative;'><div class='avatar desktop' style='background-image:url(<?php echo $info['avatar']; ?>)'></div></div>
- <div style='text-align:right; width:95%; margin: 13px auto; display:block;'>
- <form action='status.php' method='post' enctype='multipart/form-data' id='iform'>
- <input type='hidden' name='mode' value='<?php echo $tl['mode']; ?>'>
- <input type='hidden' name='uploaded' id="uploaded" value=''>
- <input type='hidden' name='thread' id="thread" value='null'>
- <div style='width:100%; text-align:left;'>
- <div style='width:100% height:27px; border-bottom: 1px solid transparent;'>
- <input type='text' name='spoiler' placeholder='Content Warning (optional)' value='' style='border:none; width:99%;'>
- </div>
- <textarea name='status' id="status" style='width:98.85%; height:100px; border:none;'></textarea>
- </div>
- <div style='display:none; clear:both; width:100%; text-align:left;' class='picker'><input type='text' id='emojisearch' placeholder="Type to Search"><div class='emojilist' style='max-height:100px; overflow:auto;'></div></div>
- <div style='display:none; clear:both; width:100%; text-align:left;' class='contactpicker'><input type='text' id='contactsearch' placeholder="Type to Search"><div class='contactlist' style='max-height:100px; overflow:auto; scroll-behavior: smooth;'></div></div>
- <div class="buttons">
- <span style='float:left;'>
- <div style='position:relative;border: 0px; float:left;'>
- <input class='cursor' type='submit' value='Send' id='send' onClick='return false'>
- </div>
- <div class='formbtn fontello cursor' style='position:relative;'>
- 
- <input class='cursor' style='opacity:0; position:absolute; left:0px; top:5px; background-color:yellow;' type='file' id="files_input_field" name='file[]' multiple onchange="upload_files();">
- </div>
- <div class='formbtn fontello' style='position:relative;'>
- <input type='checkbox' name='sensitive' id='sensitive' style='display:none;'>
- <label for='sensitive' class='fontello'></label>
- </div>
- <div class='formbtn fontello' id="emoji" style='position:relative; cursor:pointer;'>
- 😜
- </div>
- <div class='formbtn fontello' id="contact" style='position:relative; cursor:pointer;'>
- 
- </div>
- </span>
- <span style='float:left;' class='status'>
- </span>
- <span style='float:right;' class="scope">
- <select name='scope' id='scope'>
- <option value="1" <?php echo ($user_settings['defscope'] == '1' ? "selected" : ""); ?>> Public</option>
- <option value="2" <?php echo ($user_settings['defscope'] == '2' ? "selected" : ""); ?>> Unlisted</option>
- <option value="3" <?php echo ($user_settings['defscope'] == '3' ? "selected" : ""); ?>> Private</option>
- <option value="4" <?php echo ($user_settings['defscope'] == '4' ? "selected" : ""); ?>> Direct</option>
- </select>
- </span>
- </div>
- </form>
- <div style="clear: both;"></div>
- </div>
-
- </div>
- </div>
|