Advertisement
weilun513

haeeeelp

May 23rd, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.69 KB | None | 0 0
  1. <html>
  2. <head>
  3.   <title>what the heck</title>
  4.   <style>
  5.     h1 {
  6.       font-size: 2em;
  7.       font-weight: bold;
  8.       color: #777777;
  9.       text-align: center
  10.     }
  11.     table {
  12.       margin: auto;
  13.     }
  14.   </style>
  15. </head>
  16.  
  17. <body>
  18.   <h1>
  19.       {{what}}
  20.       <p style="text-align: left"><a href="{% url 'home' %}">Back</p></a>
  21.   </h1>
  22.   <table>
  23.     <tr>
  24.       <td>
  25.         <form action="{{ request.build_absolute_uri }}upload/" method="POST" enctype="multipart/form-data">
  26. {% csrf_token %}
  27.           <input type="file" name="file"/>
  28.           <br />
  29.           <input type="submit" value="Upload File" />
  30.         </form>
  31.       </td>
  32.     </tr>
  33.   </table>
  34.  
  35. </body>
  36.  
  37. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement