Create verification_failed.html
Browse files
templates/verification_failed.html
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html>
|
| 3 |
+
<head>
|
| 4 |
+
<title>Verification Failed</title>
|
| 5 |
+
</head>
|
| 6 |
+
<body>
|
| 7 |
+
<h1>Verification Failed</h1>
|
| 8 |
+
<p>{{ error_message }}</p>
|
| 9 |
+
<p>Please <a href="/login">log in</a> to access the protected resource.</p>
|
| 10 |
+
</body>
|
| 11 |
+
</html>
|