-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (51 loc) · 1.98 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
<html>
<head>
<title>PASSWORD_MANAGER_NAME</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script type="text/javascript" src="index.js"></script>
<script type="text/javascript" src="sha512.js"></script>
<link href="https://fonts.googleapis.com/css?family=Dosis&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<script type="text/javascript" src="script.js"></script>
<link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>
<body>
<div class="container" id="login">
<div class="card login-card">
<h3 id="title">Login</h3>
<!-- <input name="fullname" type="text" id="fullname" placeholder="Full name" size="35" class="signup-input"/> -->
<input name="username" type="text" id="username" placeholder="Username" size="35" />
<!-- <input name="email" type="text" id="email" placeholder="E-Mail" size="35" class="signup-input"/> -->
<div style="position: relative;"><input name="password" type="password" id="password" placeholder="Password" size="35" /><i class="material-icons entry-button" onclick="visibility(this);">visibility_off</i></div>
<button class="round-button" id="login-button" onclick="login();">Login</button>
</div>
</div>
<div class="container" id="passwords">
<header>
<img src="./logo.jpg" class="logo">
<div class="header-links">
<a href="#">HEAD_1</a>
<a href="#">HEAD_2</a>
<a href="#">HEAD_3</a>
<i class="material-icons" onclick="changeView(this);">reorder</i>
</div>
</header>
<div class="content">
<aside>
<a href="#home">SIDEBAR_ITEM_1</a>
<a href="#logout">SIDEBAR_ITEM_2</a>
<a href="#archive">SIDEBAR_ITEM_3</a>
</aside>
<div class="passwords-container">
<div class="passwords"></div>
</div>
</div>
<div class="reveal-box">
<div class="revealer">
PASSWORD_SHOW:
</div>
</div>
</div>
</body>
</html>