mirror of
https://github.com/element-hq/matrix-authentication-service.git
synced 2026-05-15 03:46:08 +00:00
24 lines
645 B
HTML
24 lines
645 B
HTML
{#
|
|
Copyright 2024 New Vector Ltd.
|
|
Copyright 2021-2024 The Matrix.org Foundation C.I.C.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
Please see LICENSE in the repository root for full details.
|
|
-#}
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Redirecting to client</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
</head>
|
|
<body onload="javascript:document.forms[0].submit()">
|
|
<form method="post" action="{{ redirect_uri }}">
|
|
{% for key, value in params|items %}
|
|
<input type="hidden" name="{{ key }}" value="{{ value }}" />
|
|
{% endfor %}
|
|
</form>
|
|
</body>
|
|
</html>
|