-
Notifications
You must be signed in to change notification settings - Fork 0
/
success.html
26 lines (23 loc) · 1.1 KB
/
success.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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<link rel="icon" href="first-aid-kit.png">
<title>Success!</title>
</head>
<body>
<div class="alert alert-success" role="alert">
<h4 class="alert-heading">Successfully sent !</h4>
<p>Your vaccination center details have been sent to the given email address</p>
<hr>
<p class="mb-0">Thanks for using our services.</p>
<p>Click below to check for another PIN.</p>
</div>
<a href="/pin" class="btn btn-warning">Try another</a>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.bundle.min.js" integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4" crossorigin="anonymous"></script>
</body>
</html>