-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathchange_password.html
73 lines (73 loc) · 3.42 KB
/
change_password.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<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=Fredoka&family=Roboto&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/main.css">
<script src="assets/js/main.js" defer></script>
<title>Wallone - Регистрация</title>
</head>
<body>
<div class="contant-login">
<div class="main-login">
<a href="index.html">
<div class="logo">
<img src="assets/images/logo.png" alt="category" loading="lazy">
<div class="logo-text">
<h3>Wallone</h3>
<a href="#">#someday</a>
</div>
</div>
</a>
</div>
</div>
<div class="container-login">
<img src="assets/images/bg-login.png" alt="image 1">
<div class="login-form">
<form class="form-login" method="post">
<h2 class="heading">Смена пароля</h2>
<div class="login-form-input">
<div class="row">
<label for="old_password">Старый пароль</label>
<input class="error-input" type="password" required id="old_password">
<small class="error-text">Обязательно поле</small>
</div>
<div class="row">
<label for="new_password">Новый пароль</label>
<input class="error-input" type="password" required id="new_password">
<small class="error-text">Обязательно поле</small>
</div>
<div class="row">
<label for="replay_new_password">Повтор пароля</label>
<input class="error-input" type="password" required id="replay_new_password">
<small class="error-text">Обязательно поле</small>
</div>
</div>
<div class="row-input-submit">
<div class="auth-input">
<input type="submit" class="login-inp" value="Сменить пароль">
</div>
</div>
</form>
</div>
</div>
<!--<div class="mes-footer">-->
<!-- <a href="https://vk.com"><img src="assets/images/icons/vk.svg"></a>-->
<!-- <a href="https://t.me/+QDWFgmYGcrw5MDg6"><img src="assets/images/icons/telegram.svg"></a>-->
<!--</div>-->
<script src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js"
integrity="sha384-b/U6ypiBEHpOf/4+1nzFpr53nxSS+GLCkfwBdFNTxtclqqenISfwAzpKaMNFNmj4"
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/js/bootstrap.min.js"
integrity="sha384-h0AbiXch4ZDo7tp9hKZ4TsHbi047NrKGLO3SEJAg45jXxnGIfYzk4Si90RDIqNm1"
crossorigin="anonymous"></script>
</body>
</html>