2015-10-13 00:30:55 +00:00
|
|
|
{% extends "layout.html" %}
|
|
|
|
{% block body %}
|
|
|
|
<div class="well col-sm-6 col-sm-offset-2">
|
2016-11-09 18:24:33 +00:00
|
|
|
<h2 style="margin-top: 0">{{_('Register a new account')}}</h2>
|
2015-10-13 00:30:55 +00:00
|
|
|
<form method="POST" role="form">
|
2015-10-13 16:07:17 +00:00
|
|
|
<div class="form-group required">
|
2016-11-09 18:24:33 +00:00
|
|
|
<label for="nickname">{{_('Username')}}</label>
|
|
|
|
<input type="text" class="form-control" id="nickname" name="nickname" placeholder="{{_('Choose a username')}}" required>
|
2015-10-13 00:30:55 +00:00
|
|
|
</div>
|
2015-10-13 16:07:17 +00:00
|
|
|
<div class="form-group required">
|
2018-08-31 13:00:22 +00:00
|
|
|
<label for="email">{{_('E-mail address')}}</label>
|
2016-11-09 18:24:33 +00:00
|
|
|
<input type="email" class="form-control" id="email" name="email" placeholder="{{_('Your email address')}}" required>
|
2015-10-13 00:30:55 +00:00
|
|
|
</div>
|
2018-09-23 17:15:50 +00:00
|
|
|
<button type="submit" id="submit" class="btn btn-primary">{{_('Register')}}</button>
|
2015-10-13 00:30:55 +00:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
{% if error %}
|
|
|
|
<div class="col-sm-6 col-sm-offset-2">
|
|
|
|
<div class="alert alert-danger">{{error}}</div>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|