rainbox.email/views/register.njk

45 lines
1.8 KiB
Plaintext
Raw Normal View History

2020-04-25 09:41:22 +02:00
{% extends 'layouts/base.njk' %}
{% set title = 'Example App - Hello world!' %}
{% block scripts %}
<script src="/js/register.js"></script>
{% endblock %}
{% block body %}
<h1>Register</h1>
<div class="container">
<div class="panel center">
<form action="{{ route('register') }}" method="POST">
<section class="sub-panel">
<h2>Email</h2>
{{ macros.field(_locals, 'checkbox', 'create_email', null, 'Create an email address') }}
2020-04-25 10:11:14 +02:00
<div class="inline-fields">
2020-04-25 09:41:22 +02:00
{{ macros.field(_locals, 'text', 'username', null, 'Choose your username', null, 'disabled') }}
2020-04-25 10:11:14 +02:00
<span>@</span>
2020-04-25 09:41:22 +02:00
{{ macros.field(_locals, 'select', 'domain', null, 'Choose your domain', null, 'disabled', ['toot.party']) }}
</div>
</section>
<section class="sub-panel">
2020-04-25 10:11:14 +02:00
<h2>Recovery email</h2>
{{ macros.field(_locals, 'email', 'recovery_email', null, 'Your email address', 'Optional') }}
2020-04-25 09:41:22 +02:00
</section>
<section class="sub-panel">
2020-04-25 10:11:14 +02:00
<h2>Password</h2>
{{ macros.field(_locals, 'password', 'password', null, 'Choose a password', null, 'required') }}
{{ macros.field(_locals, 'password', 'password_confirmation', null, 'Confirm your password', null, 'required') }}
2020-04-25 09:41:22 +02:00
</section>
{{ macros.field(_locals, 'checkbox', 'terms', null, 'I accept the terms of services', null, 'required') }}
<button type="submit">Register</button>
{{ macros.csrf(getCSRFToken) }}
</form>
</div>
</div>
{% endblock %}