-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (30 loc) · 1.15 KB
/
index.html
File metadata and controls
37 lines (30 loc) · 1.15 KB
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
<!DOCTYPE html>
<html lang="ru" dir="ltr">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600&display=swap" rel="stylesheet">
<title>Форма ввода пароля</title>
</head>
<body>
<section class="password-form">
<div class="container">
<div class="pas-form">
<div class="input">
<div class="title">Введите пароль</div>
<input id="i1" class="input-form" maxlength="20">
</div>
<div class="xz">
<div id="warning" class="message"></div>
<div id="ok" class="message2"></div>
</div>
<div class="button">
<button onclick="passwordCrypd(i1.value)" class="text-button">Вход</button>
</div>
</div>
</div>
</section>
<script src="Test1.js">
</script>
</body>
</html>