11 lines
292 B
HTML
11 lines
292 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Sign up a new account{% endblock %}
|
|
{% block content %}
|
|
<h1>Sign up</h1>
|
|
<form method="post" action="{{ url('signup:index') }}">
|
|
{{ csrf_input }}
|
|
{{ form.as_p() }}
|
|
<input type="submit" value="Sign up" name="submit"/>
|
|
</form>
|
|
{% endblock %}
|