You've already forked authentication-service
mirror of
https://github.com/matrix-org/matrix-authentication-service.git
synced 2025-11-20 12:02:22 +03:00
29 lines
1.0 KiB
HTML
29 lines
1.0 KiB
HTML
{#
|
|
Copyright 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.
|
|
#}
|
|
|
|
{% macro button(text, class="", csrf_token, post_logout_action=false) %}
|
|
<form method="POST" action="/logout" class="inline">
|
|
<input type="hidden" name="csrf" value="{{ csrf_token }}" />
|
|
{% if post_logout_action %}
|
|
{% for key, value in post_logout_action %}
|
|
<input type="hidden" name="{{ key }}" value="{{ value }}" />
|
|
{% endfor %}
|
|
{% endif %}
|
|
<button class="{{ class }}" type="submit">{{ text }}</button>
|
|
</form>
|
|
{% endmacro %}
|
|
|