14 lines
243 B
HTML
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>
|