mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-26 13:31:02 +00:00
24 lines
757 B
Text
24 lines
757 B
Text
{% 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 %}
|