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