-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (58 loc) · 2.27 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<!--------------------------
// MADE WITH LOVE BY //
// GRAVY DESIGN CO. //
// [@gravyhtx] //
--------------------------->
<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="canonical" href="https://www.gravydesign.co/">
<!-- MATERIALIZE ICONS -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" />
<!-- GOOGLE FONTS -->
<link href="https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,900&display=swap" rel="stylesheet" />
<!-- MY STYLED -->
<link rel="stylesheet" href="assets/style.css" />
<title>S.P.G. v2.0</title>
</head>
<body>
<!-- <header class="hide">
[INSERT HEADER HERE]
</header> -->
<main>
<div class="title-card center-text">
<p><div class="spg-japanese">スーパーパスワード生成</div>
<h2 class="title">// SUPER PASSWORD GENERATION //</h2></p>
</div>
<div class="pwgen_card">
<div class="pwgen_card-title">
<h2 class="xl generate-pw-title">パスワードを作る
<div class="md generate-pw-en">(Generate Password)</div>
</h2>
</div>
<div class="pwgen_input-box">
<input readonly resize="none" class="pw lg card-body no-select no-scrollbar" placeholder="awaiting confirmation..." id="pw" aria-label="Generated Password" />
<button disabled class="copy-btn disabled no-decoration hide" id="copy-btn"><i class="copy-btn-txt material-icons" id="copy-btn-txt" aria-label="Copy Password Button">content_copy</i>
</div>
<div class="pwgen_selection">
<!-- NEXT CONTAINER -->
</div>
<div class="card-footer">
<div class="pwgen_generate-btn">
<button type="button" class="generate-btn" onclick="pwQuery()">行こう! // Let's go!</button>
</div>
<div>
<button disabled class="copy no-select" id="copy">COPY</button>
</div>
</div>
</div>
</main>
<footer class="love">
made with love by grävy design co.
</footer>
<script src='assets/script.js'></script>
</body>
</html>