You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
415 B

{% extends "base" %}
{% block content %}
<form method="POST" action="/new/">
<label for="username">Username</label>
<input type="text" id="username" name="username">
<label for="password">Password</label>
<input type="text" id="password" name="password">
<label for="email">Email</label>
<input type="email" id="email" name="email">
<input type="submit" value="Create Account">
</form>
{% endblock %}