-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (92 loc) · 2.73 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="icon" type="image/png" href="./assets/images/favicon/lock.png" />
<title>Password Generator</title>
<link rel="stylesheet" href="./style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
</head>
<body>
<div class="wrapper">
<header>
<h1>Password Transmogrifier</h1>
<img
id="transmogrifier"
src="./assets/images/transmogrifier_zap.png"
alt="Calvin's transmogrifier | ZAP!!"
/>
</header>
<div class="card">
<div class="card-header">
<h2>Generate a Password:</h2>
</div>
<div class="card-body">
<textarea
readonly
id="password"
placeholder="Press the 'Generate' button below to create your new, secure password"
aria-label="Generated Password"
></textarea>
</div>
<div class="card-footer">
<button id="generate" class="btn">Generate</button>
</div>
</div>
</div>
<footer
class="sticky-footer"
style="display: contents; border-color: black; background-color: grey;"
>
<div class="container">
<div class="row">
<div class="col">
<h3>
Visit me on social media:
</h3>
</div>
</div>
<!-- footer social media classes and styling from https://www.w3schools.com/howto/howto_css_social_media_buttons.asp -->
<div class="row">
<div class="col" id="social-media">
<a
href="https://www.linkedin.com/in/ericdtorres/"
class="fa fa-linkedin"
target="_blank"
rel="noopener noreferrer"
></a>
<a
href="https://github.com/etorres-revature"
class="fa fa-github"
target="_blank"
rel="noopener noreferrer"
></a>
</div>
</div>
<div class="row">
<div class="col">
<p id="e_mail">
E-mail:
<a href="mailto:[email protected]"
>
</p>
</div>
</div>
<div class="row">
<div class="col">
<p id="copyright">
© 2020 Eric D. Torres Productions
</p>
</div>
</div>
</div>
</footer>
<script src="./script.js"></script>
</body>
</html>