-
Notifications
You must be signed in to change notification settings - Fork 0
/
failure.html
58 lines (53 loc) · 1.92 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Failure</title>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css" integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
<style>
img{
display: block;
margin-left: auto;
margin-right: auto;
width: 37%;
}
html,body{
height: 100%;
}
footer{
height: 100px;
width:100%;
position: absolute;
padding-top: 10px;
left: 0;
bottom: 0;
text-align: center;
}
</style>
<!-- Favion -->
<link rel="apple-touch-icon" sizes="180x180" href="favicon_io/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon_io/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon_io/favicon-16x16.png">
<link rel="manifest" href="favicon_io/site.webmanifest">
</head>
<body>
<div class="jumbotron jumbotron-fluid">
<div class="container">
<h1 class="display-4">Uh oh!</h1>
<p class="lead">There was error in Signing You up. Please Try again or contact the Administrator!</p>
<form action="/failure" method="post">
<button type="submit" name="button" class="btn btn-md btn-warning">Try Again</button>
</form>
</div>
</div>
<img src="images/failure.png" alt="failure.png">
<footer>
<div>
<p class="mt-5 mb-3 text-muted">© Technica</p>
</div>
</footer>
</body>
</html>