2022-11-23 23:36:30 +01:00
|
|
|
{% extends "account/account_base.twig" %}
|
2021-12-08 16:53:43 +01:00
|
|
|
|
2022-12-09 14:54:28 +01:00
|
|
|
{% set view_title = 'account.registration_title' %}
|
2021-12-08 16:53:43 +01:00
|
|
|
{% set view_icon = 'user-plus' %}
|
2022-12-09 14:54:28 +01:00
|
|
|
{% set view_description = 'account.registration_description' %}
|
2021-12-08 16:53:43 +01:00
|
|
|
|
|
|
|
{% block view_content %}
|
|
|
|
|
|
|
|
{% if not view.success %}
|
|
|
|
<div class="alert alert-danger" role="alert">{{ view.message }}</div>
|
2022-12-09 14:54:28 +01:00
|
|
|
<a href='/login' class='btn btn-primary'>{{ L("general.go_back") }}</a>
|
2021-12-08 16:53:43 +01:00
|
|
|
{% else %}
|
2022-12-09 14:54:28 +01:00
|
|
|
<h4 class="pb-4">{{ L("account.form_title") }}</h4>
|
2021-12-08 16:53:43 +01:00
|
|
|
<form>
|
|
|
|
<div class="input-group">
|
|
|
|
<div class="input-group-append">
|
|
|
|
<span class="input-group-text"><i class="fas fa-hashtag"></i></span>
|
|
|
|
</div>
|
2022-12-09 14:54:28 +01:00
|
|
|
<input id="username" autocomplete='username' name="username"
|
|
|
|
placeholder="{{ L('account.username') }}" class="form-control" type="text" maxlength="32">
|
2021-12-08 16:53:43 +01:00
|
|
|
</div>
|
|
|
|
<div class="input-group mt-3">
|
|
|
|
<div class="input-group-append">
|
|
|
|
<span class="input-group-text"><i class="fas fa-at"></i></span>
|
|
|
|
</div>
|
2022-12-09 14:54:28 +01:00
|
|
|
<input type="email" autocomplete='email' name='email' id='email'
|
|
|
|
class="form-control" placeholder="{{ L('account.email') }}" maxlength="64">
|
2021-12-08 16:53:43 +01:00
|
|
|
</div>
|
|
|
|
<div class="input-group mt-3">
|
|
|
|
<div class="input-group-append">
|
|
|
|
<span class="input-group-text"><i class="fas fa-key"></i></span>
|
|
|
|
</div>
|
2022-12-09 14:54:28 +01:00
|
|
|
<input type="password" autocomplete='new-password' name='password' id='password'
|
|
|
|
class="form-control" placeholder="{{ L('account.password') }}">
|
2021-12-08 16:53:43 +01:00
|
|
|
</div>
|
|
|
|
<div class="input-group mt-3">
|
|
|
|
<div class="input-group-append">
|
|
|
|
<span class="input-group-text"><i class="fas fa-key"></i></span>
|
|
|
|
</div>
|
2022-12-09 14:54:28 +01:00
|
|
|
<input type="password" autocomplete='new-password' name='confirmPassword'
|
|
|
|
id='confirmPassword' class="form-control" placeholder="{{ L('account.password_confirm') }}">
|
2021-12-08 16:53:43 +01:00
|
|
|
</div>
|
|
|
|
<div class="input-group mt-3">
|
2022-12-09 14:54:28 +01:00
|
|
|
<button type="button" class="btn btn-primary" id='btnRegister'>
|
|
|
|
{{ L('general.submit') }}
|
|
|
|
</button>
|
2021-12-08 16:53:43 +01:00
|
|
|
<a href='/login' style='margin-left: 10px'>
|
|
|
|
<button class='btn btn-secondary' type='button'>
|
2022-12-09 14:54:28 +01:00
|
|
|
{{ L('account.back_to_login') }}
|
2021-12-08 16:53:43 +01:00
|
|
|
</button>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% endblock %}
|