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