-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfailure.html
More file actions
31 lines (23 loc) · 832 Bytes
/
failure.html
File metadata and controls
31 lines (23 loc) · 832 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Failure</title>
<!-- Bootstrap core CSS -->
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" rel="stylesheet">
<!-- Favicon -->
<link href="image/favicon.ico" rel="icon" type="image/x-icon">
</head>
<body>
<div class="jumbotron jumbotron-fluid">
<div class="container">
<h1 class="display-4">Subscription Failed</h1>
<p class="lead">Subscription did not work as expected. Please try once again or contact me directly!</p>
<form action="/failure" method="post">
<button class="btn btn-secondary btn-lg" type="submit" name="button">Try Again</button>
</form>
</div>
</div>
</body>
</html>