25 lines
757 B
Plaintext
25 lines
757 B
Plaintext
{% extends "base" %}
|
|
|
|
{% block title %}
|
|
{{ "New Account" | _ }}
|
|
{% endblock title %}
|
|
|
|
{% block content %}
|
|
<h1>{{ "Create an account" | _ }}</h1>
|
|
<form method="post">
|
|
<label for="username">{{ "Username" | _ }}</label>
|
|
<input type="text" id="username" name="username" />
|
|
|
|
<label for="email">{{ "Email" | _ }}</label>
|
|
<input type="email" id="email" name="email" />
|
|
|
|
<label for="password">{{ "Password" | _ }}</label>
|
|
<input type="password" id="password" name="password" />
|
|
|
|
<label for="password_confirmation">{{ "Password confirmation" | _ }}</label>
|
|
<input type="password" id="password_confirmation" name="password_confirmation" />
|
|
|
|
<input type="submit" value="{{ "Create account" | _ }}" />
|
|
</form>
|
|
{% endblock content %}
|