-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfailure.html
More file actions
28 lines (25 loc) · 1.15 KB
/
Copy pathfailure.html
File metadata and controls
28 lines (25 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Newsletter Sign up failed. Try Again.</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/js/bootstrap.bundle.min.js"
integrity="sha384-FKyoEForCGlyvwx9Hj09JcYn3nv7wiPVlz7YYwJrWVcXK/BmnVDxM+D2scQbITxI"
crossorigin="anonymous"></script>
<link rel="icon" href="/images/music.png">
</head>
<body>
<div class="bg-light p-5 rounded-3">
<div class="container py-5">
<h1 class="display-4">Oops!... Something Went Wrong.</h1>
<p class="lead">You've not been able to signed up to the newsletter, Please Try Again!</p>
<form action="/failure" method="post">
<button type="submit" class="btn btn-lg btn-outline-warning">Try Again</button>
</form>
</div>
</div>
</body>
</html>