-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfinal_consul.html
55 lines (53 loc) · 1.81 KB
/
final_consul.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
<!DOCTYPE html>
<html>
<head>
<title>Lower Book (final)</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- <link rel="stylesheet" type="text/css" href="assets/css/common.css"> -->
<link rel="stylesheet" type="text/css" href="assets/css/final_consul.css">
<link href='https://fonts.googleapis.com/css?family=Poppins' rel='stylesheet'>
</head>
<body>
<!-- header section start -->
<header>
<div class="back">
<img src="assets/images/back_final.png">
</div>
<p>
Your Lower Back Program
</p>
</header>
<div class="main">
<div class="consult_popup">
<p class="popup_title">Thank you for booking a consultation with us</p>
<p class="popup_text">This will help us tailor your program to your needs.</p>
<p class="popup_text2">Please find below booking details.</p>
</div>
<div class="booking_popup">
<p class="booking_title">Your booking</p>
<div class="booking_detail">
<img src="assets/images/calendar.png">
<p>April 17</p>
</div>
<div class="booking_detail">
<img src="assets/images/clock.png">
<p>11:00 am</p>
</div>
<div class="booking_detail booking_doc">
<img src="assets/images/document.png">
<p>Doc./certs</p>
</div>
<button>Added to Calendar</button>
</div>
</div>
</body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$(".back img").click(function(){
window.location.href = "landing.html";
});
});
</script>
</html>