56 lines
2.1 KiB
HTML
56 lines
2.1 KiB
HTML
{#
|
|
Copyright 2021 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 %}
|
|
<section class="flex items-center justify-center flex-1">
|
|
<div class="w-96 m-4">
|
|
<form method="POST" class="grid grid-cols-1 gap-6">
|
|
<div class="text-center">
|
|
<h1 class="text-lg text-center font-medium">Hi {{ current_session.user.username }}</h1>
|
|
<p>To continue, please verify it's you:</p>
|
|
</div>
|
|
<input type="hidden" name="csrf" value="{{ csrf_token }}" />
|
|
{# TODO: errors #}
|
|
{{ field::input(label="Password", name="password", type="password", form_state=form, autocomplete="password") }}
|
|
{% if next and next.kind == "continue_authorization_grant" %}
|
|
<div class="grid grid-cols-2 gap-4">
|
|
{{ back_to_client::link(
|
|
text="Cancel",
|
|
class=button::outline_error_class(),
|
|
uri=next.grant.redirect_uri,
|
|
mode=next.grant.response_mode,
|
|
params=dict(error="access_denied", state=next.grant.state)
|
|
) }}
|
|
{{ button::button(text="Next") }}
|
|
</div>
|
|
{% else %}
|
|
<div class="grid grid-cols-1 gap-4">
|
|
{{ button::button(text="Next") }}
|
|
</div>
|
|
{% endif %}
|
|
</form>
|
|
<div class="text-center mt-4">
|
|
Not {{ current_session.user.username }}?
|
|
{% set post_logout_action = next | safe_get(key="params") %}
|
|
{{ logout::button(text="Sign out", class=button::text_class(), csrf_token=csrf_token, post_logout_action=post_logout_action) }}
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{% endblock content %}
|
|
|