-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfailure.html
More file actions
26 lines (19 loc) · 746 Bytes
/
Copy pathfailure.html
File metadata and controls
26 lines (19 loc) · 746 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"></script>
</head>
<body>
<div class="container mt-3">
<div class="mt-4 p-5 bg-danger text-white rounded">
<h1>Uh oh!</h1>
<p> There was an error signing up. Please try again or contact the developer </p>
<form action="/failure" method="POST">
<button class="btn btn-lg btn-warning mt-4" type="submit" name="button"> Try Again</button>
</form>
</div>
</div>
</body>
</html>