39 lines
628 B
HTML
39 lines
628 B
HTML
{% extends 'base.html'%}
|
|
|
|
{% block content %}
|
|
|
|
{% if error %}
|
|
{{ error }}
|
|
<br />
|
|
<br />
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<h1> Sign Up</h1>
|
|
|
|
<form method="POST" action="{% url 'signup' %}">
|
|
{% csrf_token %}
|
|
Username:
|
|
<br />
|
|
<input type="text" name="username" placeholder="username">
|
|
<br />
|
|
Password:
|
|
<br />
|
|
<input type="password" name="password1" placeholder="password">
|
|
<br />
|
|
Confirm Password:
|
|
<br />
|
|
<input type="password" name="password2" placeholder=" confirm password">
|
|
<br />
|
|
<br />
|
|
<input class="btn btn-primary "type="submit" value="Sign Up"/>
|
|
|
|
|
|
|
|
|
|
</form>
|
|
|
|
{% endblock %}
|