You've already forked authentication-service
mirror of
https://github.com/matrix-org/matrix-authentication-service.git
synced 2025-09-11 22:30:47 +03:00
36 lines
1.0 KiB
HTML
36 lines
1.0 KiB
HTML
{#
|
|
Copyright 2023 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 %}
|
|
<main class="w-96 flex-1 flex flex-col gap-2 justify-center">
|
|
<h1 class="text-xl font-semibold">{{ _("mas.not_found.heading") }}</h1>
|
|
<p>{{ _("mas.not_found.description") }}</p>
|
|
<div>
|
|
{{ button.link_text(text=_("mas.back_to_homepage"), href="/") }}
|
|
</div>
|
|
|
|
<hr />
|
|
|
|
<code>
|
|
<pre class="whitespace-pre-wrap break-all">{{ method }} {{ uri }} {{ version }}
|
|
|
|
{{ version }} 404 Not Found</pre>
|
|
</code>
|
|
</main>
|
|
{% endblock %}
|