-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (53 loc) · 2.41 KB
/
index.html
File metadata and controls
61 lines (53 loc) · 2.41 KB
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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Запись на стрижку</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>Запись на стрижку</h1>
<form id="bookingForm">
<div class="form-group">
<label for="master">Выберите мастера:</label>
<select id="master" name="master" required>
<option value="">-- Выберите мастера --</option>
</select>
</div>
<div class="form-group">
<label for="date">Выберите дату:</label>
<input type="date" id="date" name="date" required>
</div>
<div class="form-group">
<label for="time">Выберите время:</label>
<select id="time" name="time" required>
<option value="">-- Выберите время --</option>
</select>
</div>
<div class="form-group">
<label for="service">Выберите услугу:</label>
<select id="service" name="service" required>
<option value="">-- Выберите услугу --</option>
</select>
</div>
<div class="price-info">
<p>Цена услуги: <span id="basePrice">0</span> руб.</p>
<p>Коэффициент мастера: <span id="coefficient">1.0</span></p>
<p>Итого: <span id="totalPrice">0</span> руб.</p>
</div>
<button type="submit">Забронировать</button>
</form>
<div id="confirmation" class="confirmation hidden">
<h2>Бронирование успешно!</h2>
<p>Мастер: <span id="confirmMaster"></span></p>
<p>Дата: <span id="confirmDate"></span></p>
<p>Время: <span id="confirmTime"></span></p>
<p>Услуга: <span id="confirmService"></span></p>
<p>Стоимость: <span id="confirmPrice"></span> руб.</p>
</div>
</div>
<script src="script.js"></script>
</body>
</html>