-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
126 lines (117 loc) · 4.34 KB
/
index.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Availability Calendar</title>
<link rel="stylesheet" href="calendar.css" />
</head>
<body>
<header></header>
<main>
<!-- Calendar Section -->
<section>
<div class="calendar-wrapper">
<div id="availability-calendar">
<div class="calendar-header">
<div>
<span id="current-month">Month Year</span>
</div>
<div class="btn-wrapper">
<button id="prev-month">
<span class="icon-i-185-back-fill"></span>
</button>
<button id="next-month">
<span class="icon-i-77-next-fill"></span>
</button>
</div>
</div>
<div class="calendar-grid"></div>
<div class="loading-wrapper"><div class="custom-loader"></div></div>
</div>
</div>
</section>
<!-- Popup Section -->
<section>
<div class="timeslot-container">
<div class="timeslot-content-wrapper">
<span id="close-timeslots" class="close-btn">
<span class="line-1"></span>
<span class="line-2"></span>
</span>
<div class="row-heading">
<h3 class="no-heading-underline">
$VAR_{"label":"Time Slots
Title","type":"text","sampledata":"Hall Hire
Availability","id":"var-1706674594556","status":"true"}_$VAR
</h3>
<h2 class="no-heading-underline" id="picked-date">
31 January 2024
</h2>
</div>
<div class="row-timeslots">
<div class="slots-wrapper"></div>
<div class="loading-wrapper"></div>
</div>
<div class="row-selects">
<form
id="availabilityDropDown"
class="cms-form form-timeslot-popup"
>
<div class="fb-select form-group">
<label class="fb-text-label">
Reservation Time - Start Time
<span class="required-asterisk">*</span>
</label>
<div class="fb-inner fb-select-inner">
<select
class="form-control"
name="form_time_start"
required
>
<option value="" selected="selected" disabled="disabled">
Select a start time
</option>
<!--DCB{"app": "dataTable","dcbName": "availabilityCalendarTimeSlotsSelection"}DCB-->
</select>
</div>
</div>
<div class="fb-select form-group">
<label class="fb-text-label">
Reservation Time - End Time
<span class="required-asterisk">*</span>
</label>
<div class="fb-inner fb-select-inner">
<select class="form-control" name="form_time_end" required>
<option value="" selected="selected" disabled="disabled">
Select a end time
</option>
<!--DCB{"app": "dataTable","dcbName": "availabilityCalendarTimeSlotsSelection"}DCB-->
</select>
</div>
</div>
</form>
</div>
<div class="row-btn">
<div>
<a
id="make-reservation"
class="link-as-button-option-1 curve-edge btn-hide"
href="#"
>$VAR_{"label":"Button Text","type":"text","sampledata":"Make
a Booking","id":"var-1706675513824","status":"true"}_$VAR</a
>
</div>
</div>
</div>
</div>
</section>
</main>
<footer></footer>
<script
src="https://code.jquery.com/jquery-3.7.1.min.js"
integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo="
crossorigin="anonymous"
></script>
<script src="calendar.js" type="text/javascript"></script>
</body>
</html>