-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfailure.html
28 lines (24 loc) · 892 Bytes
/
failure.html
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">
<title>Failure</title>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css">
<!-- Favicons -->
<link rel="icon" href="/images/favicon.png">
<!-- Custom styles for this template -->
<link href="/css/styles.css" rel="stylesheet">
</head>
<body>
<div class="paths-box jumbotron jumbotron-fluid">
<div class="container">
<h1 class="display-4 paths-title">Uh oh!</h1>
<p class="lead">There was a problem signing you up. Please try again or contact the developer!</p>
<form action="/failure" method="post">
<button class="btn btn-lg btn-warning" type="submit">Try Again</button>
</form>
</div>
</div>
</body>
</html>