21 lines
453 B
HTML
21 lines
453 B
HTML
![]() |
<!DOCTYPE html>
|
||
|
<html lang="en" dir="ltr">
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title></title>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<form action="" method="POST">{% csrf_token %}
|
||
|
<label for="choice">What are we gonna upload today?</label>
|
||
|
<select name="choices" id="choices">
|
||
|
<option value="image">Picture</option>
|
||
|
<option value="video">Video</option>
|
||
|
</select>
|
||
|
|
||
|
<button type="submit"> Submit </button>
|
||
|
|
||
|
</form>
|
||
|
</body>
|
||
|
</html>
|