generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
signUpConfirm.html
70 lines (66 loc) · 2.93 KB
/
signUpConfirm.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="Description" content="Author: Cian O'Connor, LingLang's signUp Form verification, Company">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.0/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.1/css/all.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/hover.css/2.3.1/css/hover.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Caveat:wght@700&family=Josefin+Sans:wght@423&family=Raleway&display=swap">
<link rel="manifest" href="/site.webmanifest">
<link rel="stylesheet" href="assets/css/styles.css">
<title>Sign Up</title>
</head>
<body>
<!--Sign Up Confirmation Page-->
<section class="container-fluid ">
<div class="row">
<div class="col-12 sub-paragraph " data-toggle="modal" data-target="#chooseLanguage">
<img src="assets/img/logos/LingLang.png" class="linglang-confirm-logo" alt="LingLang Logo"> <br>
<div class="bg-square">
<p>
Thank you <span id="name1Confirm"></span> for joining our team! <br>
All of us here at LingLang would like to take this opportunity to wish you a warm welcome.<br><br>
</p>
<h2>Class details</h2>
<p>
Number of Children: <span id="childConfirm"></span><br>
The Language you choose: <span id="dateConfirm"></span> <span id="timeConfirm"></span><br>
A confirmation email has been sent to <span id="email1Confirm"></span> <br> <br>
<a href="index.html" class="btn book-button2 badge-pill"><i class="fas fa-home"></i></a>
</p>
</div>
</div>
</div>
</section>
<footer class=" container-fluid text-center">
<div class="row">
<div class="col-sm-12">
<ul class="list-inline social-links">
<li class="list-inline-item">
<a rel="noopener" href="https://www.facebook.com/" target="_blank">
<i class="fab fa-facebook-square" aria-hidden="true"></i>
<span class="sr-only">Facebook.</span>
</a>
</li>
<li class="list-inline-item">
<a rel="noopener" href="https://twitter.com/" target="_blank">
<i class="fab fa-twitter-square" aria-hidden="true"></i>
<span class="sr-only">Twitter.</span>
</a>
</li>
<li class="list-inline-item">
<a rel="noopener" href="https://www.instagram.com/" target="_blank">
<i class="fab fa-instagram" aria-hidden="true"></i>
<span class="sr-only">Instagram.</span>
</a>
</li>
</ul>
</div>
</div>
</footer>
<!--Script tags-->
<script src="assets/js/signUp.js"></script>
</body>
</html>