30 lines
790 B
Smarty
30 lines
790 B
Smarty
{% extends 'base.tpl' %}
|
|
{% block title %}
|
|
Sign up • {{ config.Name }}
|
|
{% endblock %}
|
|
{% block content %}
|
|
<div class="auth">
|
|
{% if flash_message %}
|
|
<p>{{ flash_message }}</p>
|
|
{% endif %}
|
|
<form method="post">
|
|
<p>
|
|
<label for="username">Username</label>
|
|
<input type="text" name="username" />
|
|
</p>
|
|
<p>
|
|
<label for="username">Email</label>
|
|
<input type="email" name="email" />
|
|
</p>
|
|
<p>
|
|
<label for="username">Password</label>
|
|
<input type="password" name="password" />
|
|
</p>
|
|
<p>
|
|
<label for="username">Repeat password</label>
|
|
<input type="password" name="repeat_password" />
|
|
</p>
|
|
<input type="submit" value="Sign up" />
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|