25 lines
915 B
HTML
25 lines
915 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Welcome, friend, to git.kittenclause.com{% endblock %}
|
|
|
|
{% block header %} {% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<p>
|
|
<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></br>
|
|
<label for="displayname">Displayname (optional)</label>
|
|
<input type="text" name="displayname" id="displayname"></br>
|
|
<label for="email">Email (optional)</label>
|
|
<input type="text" name="email"></br>
|
|
<label for="password">Password</label>
|
|
<input type="password" name="password" id="password" required></br>
|
|
<label for="confirm_password">Confirm Password</label>
|
|
<input type="password" name="pw_verify" id="pw_verify" required></br>
|
|
<input type="submit" value="Signup">
|
|
</form>
|
|
</p>
|
|
|
|
{% endblock %}
|