-
Notifications
You must be signed in to change notification settings - Fork 0
/
passwords.html
49 lines (49 loc) · 1.65 KB
/
passwords.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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Генератор паролей</title>
<script src="jquery-1.11.0.min.js"></script>
<script src="password.js"></script>
<link href="/bootstrap/css/bootstrap.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="page-header">
<h1>Генератор паролей</h1>
</div>
<div>
<div>
Выбери локаль<br/>
<select class="yoba input" id="lang">
<option value="ru">ru</option>
<option value="en">en</option>
<option value="rutranslit">rutranslit</option>
</select>
</div>
<div>
<input class="yoba input" name="seed" type="text" placeholder="напиши сюда что-нибудь">
</div>
<div style="margin-left:5px;">
<div>
Количество слов: <input name="wordsnumber" type="number" size="2" value="4">
</div>
<div>
Вставлять пробелы <input type="checkbox" name="spaces" checked>
</div>
</div>
<div>
<button id="gen" class="yoba input">сгенерировать</button>
</div>
<div>
<input name="result" type="text" class="yoba input" placeholder="пароль появится здесь">
</div>
<div id="test">
</div>
</div>
</div>
</body>
</html>