39 lines
1.0 KiB
HTML
39 lines
1.0 KiB
HTML
<!--
|
|
Copyright 2025 Aman
|
|
|
|
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.
|
|
-->
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>{{ title }}</title>
|
|
<link rel="stylesheet" href="/static/css/admin.css">
|
|
</head>
|
|
|
|
<body class="centered">
|
|
<div class="card" style="max-width:420px;text-align:center">
|
|
<h2>{{ icon }} {{ title }}</h2>
|
|
<p style="margin-top:12px">{{ message }}</p>
|
|
|
|
{% if hint %}
|
|
<p class="muted" style="margin-top:8px">{{ hint }}</p>
|
|
{% endif %}
|
|
|
|
{% if back_url %}
|
|
<a href="{{ back_url }}" class="nav-link" style="margin-top:16px;display:inline-block">
|
|
← Go back
|
|
</a>
|
|
{% endif %}
|
|
</div>
|
|
</body>
|
|
</html>
|