-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (32 loc) · 1.32 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
<!DOCTYPE HTML>
<html>
<head>
<title>SafePass</title>
<meta charset="utf-8" />
<meta name="description" content="Password generator for creating simple, strong and secure passwords">
<meta name="keywords" content="simple,password,generator,strong,secure">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="css.css" />
<link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body class="is-preload">
<header id="header">
<h1>SafePass</h1>
<p style="color:white; margin: 0 0 0.5em 0">Generate a password with zero effort.<br /></p>
<p style="color:white;">
<a id="getSimple" href="#">👌<b><span style="color: #1cb495;">S</span></b>imple</a> /
<a id="getStrong" href="#">💪🏻<b><span style="color: #1cb495;">S</span></b>trong</a> /
<a id="getSecure" href="#">🛡️<b><span style="color: #1cb495;">S</span></b>ecure</a></p>
</header>
<form id="signup-form" method="post" action="#">
<input type="email" name="pwd" id="pwd" placeholder="" style="color:white; border-color: #1cb495;" readonly />
<input type="submit" value="Copy" />
</form>
<footer id="footer">
<ul class="copyright">
<li>© Tony To</li>
</ul>
</footer>
<script src="js.js"></script>
</body>
</html>