-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (53 loc) · 2.04 KB
/
index.html
File metadata and controls
57 lines (53 loc) · 2.04 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css">
<title>パスワード生成</title>
</head>
<body>
<div class="container">
<h2>パスワードを生成する</h2>
<div class="result-contaienr">
<span id="result"></span>
<div class="copy-area">
<button class="btn" id="clipboard" data-toggle="tooltip">
<i class="fas fa-clipboard"></i>
</button>
</div>
</div>
<div class="settings">
<!-- 設定オプションチェックボックス -->
<div class="setting">
<label>パスワードの長さ</label>
<input type="number" id="length" min="4" max="20" value="20">
</div>
<div class="setting">
<label>大文字を含める</label>
<input type="checkbox" id="uppercase" checked>
</div>
<div class="setting">
<label>小文字を含める</label>
<input type="checkbox" id="lowercase" checked>
</div>
<div class="setting">
<label>数字を含める</label>
<input type="checkbox" id="numbers" checked>
</div>
<div class="setting">
<label>特殊文字を含める</label>
<input type="checkbox" id="special" checked>
</div>
<button class="btn btn-large" id="generate">
パスワードを生成する
</button>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
<script src="build/script.js"></script>
</body>
</html>