-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (61 loc) · 2.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400&display=swap" rel="stylesheet">
</head>
<body>
<section>
<header>
<h1>Регистрация в нашей системе</h1>
<p class="text_content">
Мы не передаем данные третьим лицам. Заполненная информация будет
использоваться только для выбранных вами уведомлений и отображения
внутри системы.
</p>
</header>
<div class="form_wrapper">
<p class="text_content">Email*</p>
<input type="text" placeholder="Ваш email" required>
</div>
<div class="form_wrapper">
<p class="text_content">Телефон*</p>
<input type="tel" placeholder="+7" required>
</div>
<div class="form_wrapper">
<p class="text_content">Пароль*</p>
<input type="password" placeholder="Ваш пароль" required>
</div>
<div class="form_wrapper">
<p class="text_content">Повторите пароль*</p>
<input type="password" placeholder="Пароль ещё раз" required>
</div>
<div class="form_wrapper">
<p class="text_content">Имя*</p>
<input type="text" placeholder="Ваше имя" required>
</div>
<div class="form_wrapper">
<p class="text_content">Фамилия*</p>
<input type="text" placeholder="Ваша фамилия" required>
</div>
<div class="form_wrapper">
<p class="text_content">Дата рождения*</p>
<input type="date" required>
</div>
<div class="checkbox_wrapper">
<input type="checkbox">
Даю согласие на обработку персональных данных. Ознакомлен с <a href="#">политикой конфедециальности.</a>
</div>
<div class="btn_wrapper">
<input type="button" value="Зарегистрироваться">
<input type="reset" value="Очистить">
</div>
</section>
</body>
</html>