-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfailure.html
37 lines (37 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Failure</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM"
crossorigin="anonymous"
/>
</head>
<body>
<div
class="position-relative p-5 text-center text-muted bg-body border border-dashed rounded-5"
>
<svg class="bi mt-5 mb-3" width="48" height="48">
<use xlink:href="#check2-circle"></use>
</svg>
<h1 class="text-body-emphasis">Ooops!!!</h1>
<p class="col-lg-6 mx-auto mb-4">
there was a problem signing you up. please try again or contact the
developer
</p>
<form action="/failure.html" method="POST">
<button
class="btn btn-primary px-5 mb-5"
onclick="window.location.href = './signup.html' "
type="submit"
>
Try again
</button>
</form>
</div>
</body>
</html>