25 lines
1.0 KiB
HTML
25 lines
1.0 KiB
HTML
<!doctype html>
|
|
<html lang="en" data-bs-theme="dark">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>pyTorrent {{ code }}</title>
|
|
<link href="{{ bootstrap_theme_url('default') }}" rel="stylesheet">
|
|
<link href="{{ frontend_asset_url('fontawesome_css') }}" rel="stylesheet">
|
|
<link href="{{ static_url('styles.css') }}" rel="stylesheet">
|
|
</head>
|
|
<body class="error-page">
|
|
<main class="error-card" role="alert">
|
|
<div class="error-brand"><i class="fa-solid fa-robot"></i> pyTorrent</div>
|
|
<div class="error-icon" aria-hidden="true"><i class="fa-solid {{ icon }}"></i></div>
|
|
<p class="error-code">{{ code }}</p>
|
|
<h1>{{ title }}</h1>
|
|
<p>{{ message }}</p>
|
|
<div class="error-actions">
|
|
<a class="btn btn-primary" href="{{ url_for('main.index') }}"><i class="fa-solid fa-house"></i> Back to dashboard</a>
|
|
<a class="btn btn-outline-secondary" href="{{ url_for('main.docs') }}"><i class="fa-solid fa-book"></i> API docs</a>
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html>
|