Advertisement
IrinaPenzina

html upload

Nov 23rd, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.62 KB | None | 0 0
  1.  
  2. {% extends "layout.html" %}
  3.  
  4. {% block title %}
  5.     Upload
  6. {% endblock %}
  7.     {% block main %}
  8.         <form method=POST enctype=multipart/form-data action="{{ url_for('upload') }}">
  9.             <input type=file name=photo>
  10.             <input type=file name=photo>
  11.             <input type=file name=photo>
  12.             <input type=file name=photo>
  13.             <div class="form-group">
  14.                 <input autocomplete="off" autofocus class="form-control" name="text" placeholder="Insperational text" type="text"/>
  15.             </div>
  16.             <input type="submit" value=Upload>
  17.         </form>
  18.     {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement