-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfailure.html
More file actions
22 lines (21 loc) · 844 Bytes
/
failure.html
File metadata and controls
22 lines (21 loc) · 844 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Failure</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="main.css" />
<script src="main.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="bg-light p-5 rounded-lg m-3">
<h1 class="display-4">Uh oh!</h1>
<p class="lead">There was a problem signing you up. Please try again or contact the developer!</p>
<form action="/failure" method="POST">
<button class="btn btn-warning btn-lg" type="submit" name="button">Try again</button>
</form>
</div>
</body>
</html>