locality/templates/sign-up.html

26 lines
624 B
HTML

{% extends "base.html" %}
{% block title %}New User Sign-Up - Locality{% endblock %}
{% block content %}
<form action="create_new_user" method="post">>
<ul>
<li>
<label for="real_name">Name:</label>
<input type="text" id="real_name" name="real_name" />
</li>
<li>
<label for="email">Email:</label>
<input type="email" id="email" name="email" />
</li>
<li>
<label for="password">Password:</label>
<input type="password" id="password" name="password" />
</li>
<li>
<button type="submit">Create Account</button>
</li>
</ul>
</form>
{% endblock %}