-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfailure.html
21 lines (21 loc) · 879 Bytes
/
failure.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!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>Something went wrong!</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
</head>
<body>
<div class="jumbotron jumbotron-fluid">
<div class="container">
<h1 class="display-4">OOPs! Something went wrong</h1>
<p class="lead">Try to SignUp again or contact developer</p>
<form action="/failure" method="POST">
<button class="btn btn-warning" type="submit" name="button">Try again</button>
</form>
</div>
</div>
</body>
</html>