82 lines
3.0 KiB
HTML
82 lines
3.0 KiB
HTML
{#
|
|
Copyright 2021, 2022 The Matrix.org Foundation C.I.C.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
#}
|
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<header class="page-heading">
|
|
<div class="icon">
|
|
{{ icon.user_profile_solid() }}
|
|
</div>
|
|
|
|
<div class="header">
|
|
<h1 class="title">{{ _("mas.register.create_account.heading") }}</h1>
|
|
<p class="text">{{ _("mas.register.create_account.description") }}</p>
|
|
</div>
|
|
</header>
|
|
|
|
<section class="flex flex-col gap-6">
|
|
<form method="POST" class="cpd-form-root">
|
|
{% if form.errors is not empty %}
|
|
{% for error in form.errors %}
|
|
<div class="text-critical font-medium">
|
|
{{ errors.form_error_message(error=error) }}
|
|
</div>
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
<input type="hidden" name="csrf" value="{{ csrf_token }}" />
|
|
|
|
{% call(f) field.field(label=_("common.username"), name="username", form_state=form) %}
|
|
<input {{ field.attributes(f) }} class="cpd-text-control" type="text" autocomplete="username" autocorrect="off" autocapitalize="none" required />
|
|
{% endcall %}
|
|
|
|
{% call(f) field.field(label=_("common.email_address"), name="email", form_state=form) %}
|
|
<input {{ field.attributes(f) }} class="cpd-text-control" type="email" autocomplete="email" required />
|
|
{% endcall %}
|
|
|
|
{% call(f) field.field(label=_("common.password"), name="password") %}
|
|
<input {{ field.attributes(f) }} class="cpd-text-control" type="password" autocomplete="new-password" required />
|
|
{% endcall %}
|
|
|
|
{% call(f) field.field(label=_("common.password_confirm"), name="password_confirm") %}
|
|
<input {{ field.attributes(f) }} class="cpd-text-control" type="password" autocomplete="new-password" required />
|
|
{% endcall %}
|
|
|
|
{{ button.button(text=_("action.continue")) }}
|
|
</form>
|
|
|
|
{% if next and next.kind == "continue_authorization_grant" %}
|
|
{{ back_to_client.link(
|
|
text=_("action.cancel"),
|
|
kind="destructive",
|
|
uri=next.grant.redirect_uri,
|
|
mode=next.grant.response_mode,
|
|
params=dict(error="access_denied", state=next.grant.state)
|
|
) }}
|
|
{% endif %}
|
|
|
|
<div class="flex gap-1 justify-center items-center">
|
|
<p class="cpd-text-secondary cpd-text-body-md-regular">
|
|
{{ _("mas.register.call_to_login") }}
|
|
</p>
|
|
|
|
{% set params = next["params"] | default({}) | to_params(prefix="?") %}
|
|
{{ button.link_text(text=_("mas.register.sign_in_instead"), href="/login" ~ params) }}
|
|
</div>
|
|
</section>
|
|
{% endblock content %}
|