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 %}
|
2018-06-17 15:26:15 +00:00
|
|
|
{{ "New Account" | _ }}
|
2018-05-09 17:53:12 +00:00
|
|
|
{% endblock title %}
|
2018-04-22 18:13:12 +00:00
|
|
|
|
2018-05-09 17:53:12 +00:00
|
|
|
{% block content %}
|
2018-06-17 15:26:15 +00:00
|
|
|
<h1>{{ "Create an account" | _ }}</h1>
|
2018-05-09 17:53:12 +00:00
|
|
|
<form method="post">
|
2018-06-17 15:26:15 +00:00
|
|
|
<label for="username">{{ "Username" | _ }}</label>
|
2018-05-19 14:26:56 +00:00
|
|
|
<input type="text" id="username" name="username" />
|
2018-04-22 18:13:12 +00:00
|
|
|
|
2018-06-17 15:26:15 +00:00
|
|
|
<label for="email">{{ "Email" | _ }}</label>
|
2018-05-19 14:26:56 +00:00
|
|
|
<input type="email" id="email" name="email" />
|
2018-04-22 18:13:12 +00:00
|
|
|
|
2018-06-17 15:26:15 +00:00
|
|
|
<label for="password">{{ "Password" | _ }}</label>
|
2018-05-19 14:26:56 +00:00
|
|
|
<input type="password" id="password" name="password" />
|
2018-05-09 17:53:12 +00:00
|
|
|
|
2018-06-17 15:26:15 +00:00
|
|
|
<label for="password_confirmation">{{ "Password confirmation" | _ }}</label>
|
2018-05-19 14:26:56 +00:00
|
|
|
<input type="password" id="password_confirmation" name="password_confirmation" />
|
2018-05-09 17:53:12 +00:00
|
|
|
|
2018-06-17 18:14:58 +00:00
|
|
|
<input type="submit" value="{{ "Create account" | _ }}" />
|
2018-05-09 17:53:12 +00:00
|
|
|
</form>
|
|
|
|
{% endblock content %}
|