-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsign-up.html
55 lines (46 loc) · 2.37 KB
/
sign-up.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
<!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">
</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="sign-up-form">
<h1>Регистрация</h1>
<label for="username">Имя пользователя:</label>
<input type="text" id="username" name="username" placeholder="Введите имя пользователя" required>
<label for="email">Электронная почта:</label>
<input type="email" id="email" name="email" placeholder="Введите электронную почту" required>
<label for="password">Пароль:</label>
<input type="password" id="password" name="password" placeholder="Введите пароль" required>
<label for="password-confirm">Подтверждение пароля:</label>
<input type="password" id="password-confirm" name="password-confirm" placeholder="Подтвердите пароль" required>
<a href="sign-in.html">Уже есть аккаунт?</a>
<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>
</html>