-
Notifications
You must be signed in to change notification settings - Fork 0
/
personal.html
70 lines (69 loc) · 2.82 KB
/
personal.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Personal</title>
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<div class="container">
<div class="header">
<div class="logo_title">
<img class="logo" src="images/categories/food/foodbascket.jpg" alt="">
<span class="shop_title">Мой магазин</span>
</div>
<div class="menu_auth">
<ul class="menu">
<li><a href="index.html">Главная</a></li>
<li><a href="catalog.html">Каталог</a></li>
<li><a href="contacts.html">Контакты</a></li>
</ul>
</div>
</div>
<div class="content">
<h2>Личный кабинет</h2>
<fieldset>
<legend>Личные данные</legend>
<form action="personal.html" method="post">
<label for="userName">Логин:</label>
<input name="username"
id="userName"
type="text"
placeholder="Имя на сайте">
<br>
<label for="eMail">Ваш e-mail:</label>
<input name="email"
id="eMail"
type="text"
placeholder="example@mail.com"
required>
<br>
<label for="password">Пароль:</label>
<input name="password"
id="password"
type="text"
placeholder="Ваш пароль">
<br>
<label for="birthdate">Дата рождения:</label>
<input name="birthdate"
id="birthdate"
type="date"
value="1980-01-01">
<br>
<label for="info">О себе:</label>
<textarea name="info"
id="info"
cols="25"
rows="5">
</textarea>
<br>
<button>Подтвердить</button>
</form>
</fieldset>
</div>
<div class="footer">
<div class="rights">©Все права защищены</div>
</div>
</div>
</body>
</html>