mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-26 21:41:04 +00:00
12d85c6ec5
+ New design! + Added link for author name in comments. + Added author full name in comments. * Fixed label / input relation linking.
24 lines
685 B
Text
24 lines
685 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 %}
|