2025-05-29 22:40:58 +02:00

19 lines
491 B
HTML

<!-- templates/error.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Error</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<div class="container mt-5">
<h1>Error</h1>
<p>{{ message }}</p>
<a href="{{ url_for('user_dashboard') }}" class="btn btn-primary">Volver</a>
</div>
</body>
</html>