-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfailure.html
More file actions
32 lines (26 loc) · 949 Bytes
/
failure.html
File metadata and controls
32 lines (26 loc) · 949 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
27
28
29
30
31
32
<!--
example from https://getbootstrap.com/docs/4.0/components/jumbotron/
+ html boilerplate
-->
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Failure</title>
<!-- Bootstrap CSS link -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
</head>
<body>
<!-- copied from bootstrap jumbotron example -->
<div class="jumbotron jumbotron-fluid">
<div class="container">
<h1 class="display-4">Uh oh!</h1>
<p class="lead">There was a problem. Please try again or contact the developer!</p>
<!-- form to try again with a submit button -->
<form action="/failure" method="post">
<button class="btn btn-lg btn-warning" type="submit" name="button">Try Again</button>
</form>
</div>
</div>
</body>
</html>