-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfailure.html
More file actions
24 lines (24 loc) · 744 Bytes
/
failure.html
File metadata and controls
24 lines (24 loc) · 744 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Success</title>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
/>
<link href="css/styles.css" rel="stylesheet" />
</head>
<body>
<div class="jumbotron jumbotron-fluid container-fluid customDiv">
<div class="container">
<h1>Uhh....oh</h1>
<p>Something went wrong please try again.</p>
<form action="/failure" method="post">
<button type="submit" class="btn retryButton btn-danger btn-lg">Retry</button>
</form>
</div>
</div>
</body>
</html>