2018-05-09 19:53:12 +02:00
|
|
|
{% extends "base" %}
|
2018-04-22 20:13:12 +02:00
|
|
|
|
2018-05-09 19:53:12 +02:00
|
|
|
{% block title %}
|
|
|
|
New Account
|
|
|
|
{% endblock title %}
|
2018-04-22 20:13:12 +02:00
|
|
|
|
2018-05-09 19:53:12 +02:00
|
|
|
{% block content %}
|
|
|
|
<h1>Create an account</h1>
|
|
|
|
<form method="post">
|
|
|
|
<label for="username">Username</label>
|
2018-05-19 16:26:56 +02:00
|
|
|
<input type="text" id="username" name="username" />
|
2018-04-22 20:13:12 +02:00
|
|
|
|
2018-05-09 19:53:12 +02:00
|
|
|
<label for="email">Email</label>
|
2018-05-19 16:26:56 +02:00
|
|
|
<input type="email" id="email" name="email" />
|
2018-04-22 20:13:12 +02:00
|
|
|
|
2018-05-09 19:53:12 +02:00
|
|
|
<label for="password">Password</label>
|
2018-05-19 16:26:56 +02:00
|
|
|
<input type="password" id="password" name="password" />
|
2018-05-09 19:53:12 +02:00
|
|
|
|
|
|
|
<label for="password_confirmation">Password confirmation</label>
|
2018-05-19 16:26:56 +02:00
|
|
|
<input type="password" id="password_confirmation" name="password_confirmation" />
|
2018-05-09 19:53:12 +02:00
|
|
|
|
2018-05-19 16:26:56 +02:00
|
|
|
<input type="submit" value="Create account" />
|
2018-05-09 19:53:12 +02:00
|
|
|
</form>
|
|
|
|
{% endblock content %}
|