-
Notifications
You must be signed in to change notification settings - Fork 0
/
failure.html
25 lines (22 loc) · 977 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Failure</title>
<link rel="icon" href="images/favicon.ico">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link href="css/styles.css" rel="stylesheet">
</head>
<body class="success-page">
<img src="/images/failure.png" alt="failure-image" width="250" height="250" class="image-mod">
<div class="jumbotron jumbotron-fluid success-page">
<div class="container">
<h1 class="display-4">Uh,Oh Buggerz!</h1>
<p class="lead">There was a problem signing you up. Please try again or contact the devloper.</p>
<form class="" action="/failure" method="post">
<button type="submit" class="btn btn-lg btn-warning" name="button">Try Again</button>
</form>
</div>
</div>
</body>
</html>