what2watch/templates/signup.html

27 lines
978 B
HTML
Raw Normal View History

2023-05-17 20:40:06 +00:00
{% extends "base.html" %}
2024-04-12 05:15:34 +00:00
{% block title %}Sign Up for What 2 Watch, Buddy{% endblock %}
2023-05-17 20:40:06 +00:00
2023-06-13 21:33:31 +00:00
{% block header %} {% endblock %}
2023-05-17 20:40:06 +00:00
{% block content %}
2023-05-18 22:49:33 +00:00
<p>
<form action="/signup" enctype="application/x-www-form-urlencoded" method="post">
2024-01-15 00:55:35 +00:00
<input type="hidden" name="invitation" value="{{self.invitation}}">
<label for="username">Username</label>
2023-05-18 22:49:33 +00:00
<input type="text" name="username" id="username" minlength="1" maxlength="20" required></br>
<label for="displayname">Displayname (optional)</label>
2023-05-18 22:49:33 +00:00
<input type="text" name="displayname" id="displayname"></br>
<label for="email">Email (optional)</label>
2023-05-18 22:49:33 +00:00
<input type="text" name="email"></br>
<label for="password">Password</label>
2023-05-18 22:49:33 +00:00
<input type="password" name="password" id="password" required></br>
<label for="confirm_password">Confirm Password</label>
2023-05-18 22:49:33 +00:00
<input type="password" name="pw_verify" id="pw_verify" required></br>
<input type="submit" value="Signup">
</form>
2023-05-18 22:49:33 +00:00
</p>
2023-05-17 20:40:06 +00:00
{% endblock %}