31 lines
1.1 KiB
Plaintext
31 lines
1.1 KiB
Plaintext
|
<!doctype html>
|
||
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<title>#(statusMessage)</title>
|
||
|
<link rel="stylesheet" type="text/css" href="/tabler/css/tabler.css">
|
||
|
<link rel="stylesheet" type="text/css" href="/tabler/css/dashboard.css">
|
||
|
<script src="/tabler/js/core.js"></script>
|
||
|
<script src="/tabler/js/dashboard.js"></script>
|
||
|
</head>
|
||
|
<body class="">
|
||
|
<div class="page">
|
||
|
<div class="page-content">
|
||
|
<div class="container text-center">
|
||
|
<div class="display-1 text-muted mb-5"><i class="si si-exclamation"></i> #(status)</div>
|
||
|
<h1 class="h2 mb-3">
|
||
|
#if(reason ?? false):
|
||
|
#(reason)
|
||
|
#else:
|
||
|
#(statusMessage)
|
||
|
#endif
|
||
|
</h1>
|
||
|
<p class="h4 text-muted font-weight-normal mb-7">If you have done everything properly, please try again later…</p>
|
||
|
<a class="btn btn-primary" href="javascript:history.back()">
|
||
|
<i class="fe fe-arrow-left mr-2"></i>Go back
|
||
|
</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|