11 lines
No EOL
330 B
HTML
11 lines
No EOL
330 B
HTML
{% extends 'layout.html' %}
|
|
{% block content %}
|
|
<section class="form-section">
|
|
<h2>Register</h2>
|
|
<form method="post" class="login-form">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<button type="submit" class="btn-submit">Register</button>
|
|
</form>
|
|
</section>
|
|
{% endblock %} |