-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure-pvk.html
101 lines (99 loc) · 3.7 KB
/
configure-pvk.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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>Добавить профессию</title>
<link rel="stylesheet" href="style/main.css">
<link rel="stylesheet" href="style/header.css">
<link rel="stylesheet" href="style/styles.css">
<link rel="stylesheet" href="style/pvk.css">
</head>
<body>
<header class="header">
<nav class="nav-container">
<a href="index.html" class="logo"><img src="assets/logo_end.png" width="150"> </a>
<div class="nav-links">
<a href="#professions" class="nav-item">Лист профессий</a>
<div class="auth-buttons unauthorized">
<a href="sign-in.html" class="btn login">Вход</a>
<a href="sign-up.html" class="btn register">Регистрация</a>
</div>
<div class="auth-buttons authorized">
<a href="index.html" id="logout-btn" class="btn login">Выход</a>
<a href="user-profile.html" class="btn register">Личный кабинет</a>
</div>
</div>
</nav>
</header>
<main class="form-container">
<form action="#" method="post" id="pvk-form" class="profession-form">
<h1>Добавить / Изменить профессионально-важные качества</h1>
<div class="pvk">
<label>
<select class="select-pvk" required name="pvk-personal" id="pvk-personal">
<option selected disabled>Выберите ПВК</option>
</select>
</label>
<label>
<input class="rating-pvk" required type="number" name="pvk-personal-rate" min="-10" max="10">
</label>
</div>
<div class="pvk">
<label>
<select class="select-pvk" required name="pvk-intellectual" id="pvk-intellectual">
<option selected disabled>Выберите ПВК</option>
</select>
</label>
<label>
<input class="rating-pvk" required type="number" name="pvk-intellectual-rate" min="-10" max="10">
</label>
</div>
<div class="pvk">
<label>
<select class="select-pvk" required name="pvk-physical" id="pvk-physical">
<option selected disabled>Выберите ПВК</option>
</select>
</label>
<label>
<input class="rating-pvk" required type="number" name="pvk-physical-rate" min="-10" max="10">
</label>
</div>
<div class="pvk">
<label>
<select class="select-pvk" required name="pvk-physiological" id="pvk-physiological">
<option selected disabled>Выберите ПВК</option>
</select>
</label>
<label>
<input class="rating-pvk" required type="number" name="pvk-physiological-rate" min="-10" max="10">
</label>
</div>
<div class="pvk">
<label>
<select class="select-pvk" required name="pvk-psychophysiological" id="pvk-psychophysiological">
<option selected disabled>Выберите ПВК</option>
</select>
</label>
<label>
<input class="rating-pvk" required type="number" name="pvk-psychophysiological-rate" min="-10" max="10">
</label>
</div>
<div class="pvk">
<label>
<select class="select-pvk" required name="pvk-operational" id="pvk-operational">
<option selected hidden disabled>Выберите ПВК</option>
</select>
</label>
<label>
<input class="rating-pvk" required type="number" name="pvk-operational-rate" min="-10" max="10">
</label>
</div>
<button type="submit">Применить</button>
</form>
</main>
</body>
<script type="module" src="js/popup.js"></script>
<script type="module" src="js/auth.js"></script>
<script type="module" src="js/header.js"></script>
<script type="module" src="js/configure-pvk.js"></script>
</html>