-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfail.html
24 lines (18 loc) · 844 Bytes
/
fail.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Fail</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
</head>
<body>
<div class="jumbotron">
<h1 class="display-4">Fail to sign up</h1>
<p class="lead">Try again latter</p>
<form action="/fail" method="post">
<button class="btn btn-lg btn-warning" type="submit" name="button">Try Again</button>
</form>
</div>
</body>
</html>