-
Notifications
You must be signed in to change notification settings - Fork 0
/
request.html
68 lines (68 loc) · 3.3 KB
/
request.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=1300, initial-scale=1.0">
<link rel="stylesheet" href="css/request.css">
<link rel="shortcut icon" href="icons/Logo.svg" type="image/x-icon">
<script src="js/index.js" defer></script>
<title>ДомСтрой</title>
</head>
<body>
<main class="wrapper">
<section class="wrapper__item item">
<div class="request__block">
<h1 class="request__title">
Оформить заявку
</h1>
<form class="form" action="index.html">
<div class="form__block">
<div class="lside">
<div class="input">
<h1 class="title">
Имя *
</h1>
<input type="text" placeholder="Ваше имя" required>
</div>
<div class="input">
<h1 class="title">
Телефон *
</h1>
<input type="tel" placeholder="+996 (900) 000-00-00" required>
</div>
<div class="input">
<h1 class="title">
Адрес строительства *
</h1>
<input type="email" placeholder="Email" required>
</div>
</div>
<div class="rside">
<div class="input">
<h1 class="title">
Желаемая дата доставки
</h1>
<input type="date" required>
</div>
<div class="input">
<h1 class="title">
Комментарий к заказу
</h1>
<textarea name="comm" placeholder="Ваш комментарий" required></textarea>
</div>
</div>
</div>
<div class="buttons">
<input type="submit" value="Отправить">
<p class="subtitle">
Нажимая кнопку «Отправить», я даю свое согласие на обработку моих персональных данных, в соответствии с Федеральным законом от 27.07.2006 года №152-ФЗ «О персональных данных», на условиях и для целей, определенных в Согласии на обработку персональных данных
</p>
</div>
</div>
</form>
</div>
</section>
</main>
</body>
</html>