what2watch/templates/signup.html

22 lines
835 B
HTML
Raw Normal View History

2023-05-17 20:40:06 +00:00
{% extends "base.html" %}
{% block title %}Sign Up for Witch Watch, Bish{% endblock %}
{% block content %}
<form action="/signup" enctype="application/x-www-form-urlencoded" method="post">
<label for="username">Username</label>
<input type="text" name="username" id="username" minlength="1" maxlength="20" required>
<label for="displayname">Displayname (optional)</label>
<input type="text" name="displayname" id="displayname">
<label for="email">Email (optional)</label>
<input type="text" name="email">
<label for="password">Password</label>
<input type="password" name="password" id="password" required>
<label for="confirm_password">Confirm Password</label>
<input type="password" name="pw_verify" id="pw_verify" required>
<input type="submit" value="Signup">
</form>
2023-05-17 20:40:06 +00:00
{% endblock %}