IDDRS_API/templates/upload_file_form.html
2023-11-20 15:31:13 +01:00

14 lines
243 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>User Form</title>
</head>
<body>
<h1>User Form</h1>
<form method="post">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Submit">
</form>
</body>
</html>