-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfailure.html
29 lines (26 loc) · 1.27 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
<!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>Failed</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
</head>
<body>
<main>
<div class="container py-4" style="margin-top: 8%;">
<div class="p-5 mb-4 bg-light rounded-3">
<div class="container-fluid py-5">
<h1 class="display-5 fw-bold">Uh oh!</h1>
<p class="col-md-8 fs-4">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">Try again</button>
</form>
<button class="btn btn-dark btn-lg" type="button"><a href="https://webite-web-creators.web.app/contact.html" style="color: white; text-decoration: none;">Contact Developer</a></button>
</div>
</div>
</div>
</main>
</body>
</html>