-
Notifications
You must be signed in to change notification settings - Fork 0
/
failure.html
27 lines (20 loc) · 995 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Failure</title>
<!-- Bootstrap core CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<!-- JavaScript Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4" crossorigin="anonymous"></script>
</head>
<body>
<div class="bg-light p-5 rounded-lg m-3">
<h1 class="display-4">Uh oh!</h1>
<p class="lead">There was a problem signing you up. Please try again later.</p>
</div>
<form action="/failure" method="post">
<button class="btn btn-lg btn-warning"type="submit" name="button">Try Again</button>
</form>
</body>
</html>