Advertisement
Guest User

Forma

a guest
Feb 25th, 2020
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.04 KB | None | 0 0
  1. <div class="wrapper">
  2.     <h1 class="new-post-heading">Enter your new post!</h1>
  3.     <div class="wrap">
  4.         <form method="post" enctype="multipart/form-data">
  5.             <div class="form-group">
  6.                 <label for="title-input">Title</label>
  7.                 <input type="text" class="form-control" id="title-input" name="title">
  8.             </div>
  9.             <div class="form-group">
  10.                 <label for="content-input">Content</label>
  11.                 <textarea type="textarea" class="form-control" id="content-input" name="content"></textarea>
  12.             </div>
  13.             <div class="form-group">
  14.                 <input type="file" name="file" class="custom-file-input" id="customFile" accept="image/x-png,image/gif,image/jpeg">
  15.                     <label class="custom-file-label" for="customFile">Choose image!</label>
  16.             </div>
  17.             <div class="btn-div">
  18.                 <button type="submit" name="post-beer" class="btn btn-element">POST</button>
  19.             </div>
  20.         </form>
  21.     </div>
  22. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement