-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
190 lines (178 loc) · 5.95 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Meeting planning calendar</title>
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.1/css/all.css"/>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;700&display=swap" rel="stylesheet">
</head>
<body>
<section class="first-container">
<div class="first-container__first-block">
<h1 class="first-container__header">Calendar</h1>
<div class="first-container__second-block">
<select class="first-container__list" name="participants">
<option value="1">All members</option>
<option value="2">Maria</option>
<option value="3">Bob</option>
<option value="4">Alex</option>
<option value="5">Mike</option>
<option value="6">Andrew</option>
</select>
<button id="btn_modal_window" class="first-container__button">New event +</button>
</div>
</div>
</section>
<section class="second-container">
<table id="tbl">
<tr>
<th>Name</th>
<th>Mon</th>
<th>Tue</th>
<th>Wed</th>
<th>Thu</th>
<th>Fri</th>
</tr>
<tr>
<td>10:00</td>
<td ></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>11:00</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>12:00</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>13:00</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>14:00</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>15:00</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>16:00</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>17:00</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>18:00</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</table>
</section>
<section id="my_modal" class="third-container">
<div class="modal_content">
<div class="modal">
<div class="third-container__header">
<p>Creating new event</p>
</div>
<div class="third-container__warning">
<p><i class="fas fa-times-circle"></i>Failed to create an event. Time slot is already booked.</p>
</div>
<div class="third-container__form">
<label for="textOut"><p>Name of event:</p>
<input type="text" id="tblText" name="text">
</label>
<label><p>Participants:</p>
<select name="participants">
<option value="1">All members</option>
<option value="2">Maria</option>
<option value="3">Bob</option>
<option value="4">Alex</option>
<option value="5">Mike</option>
<option value="6">Andrew</option>
</select>
</label>
<label for="col"><p>Day:</p>
<select id="col" name="day">
<option value="1">Monday</option>
<option value="2">Tuesday</option>
<option value="3">Wednesday</option>
<option value="4">Thursday</option>
<option value="5">Friday</option>
</select>
</label>
<label for="row"><p>Time:</p>
<select id="row" name="time">
<option value="1">10:00</option>
<option value="2">11:00</option>
<option value="3">12:00</option>
<option value="4">13:00</option>
<option value="5">14:00</option>
<option value="6">15:00</option>
<option value="7">16:00</option>
<option value="8" >17:00</option>
<option value="9">18:00</option>
</select>
</label>
</div>
<div class="third-container__buttons">
<button class="close_modal_window">Cancel</button>
<button onclick="changeTable()">Create</button>
</div>
</div>
</div>
</section>
<section class="fourth-container">
<div class="fourth-container__header">
<p>Deleting an event</p>
</div>
<div class="fourth-container__text">текст попередження</div>
<div class="fourth-container__buttons">
<button>No</button>
<button>Yes</button>
</div>
</section>
<script src="popup.js"></script>
</body>
</html>