-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (49 loc) · 2.63 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<div class="parent">
<img id="login-picture" type="img-button" >
<img id="userback" type="img-button" src="static/icons/octicon--playr-24.svg">
<img id="userfwd" type="img-button" src="static/icons/octicon--play-24.svg">
</div>
<body class="align">
<div class="grid">
<form action="" method="POST" class="form login">
<div class="form__field">
<label for="login__username"><i class="octicon--person" ><use href="#user"></use></i><span class="hidden">Username</span></label>
<input id="login__username" type="text" name="username" class="form__input" placeholder="Username" required>
</div>
<div class="form__field">
<label for="login__password"><i class="octicon--lock" ><use href="#password"></use></i><span class="hidden">Password</span><i class="octicon--eye-closed pw_hide"></i></label>
<input id="login__password" type="password" name="password" class="form__input" placeholder="Password" required>
</div>
<div class="form__field">
<input type="submit" id="login-button" tabIndex="3"></input>
</div>
</form>
</div>
<div class="dropdown">
<img src="static/icons/octicon--gear-24.svg" alt="Sessions" width="24" height="24" class="dropbtn">
<div id="dropdown-content" class="dropdown-content">
</div>
</div>
<div class="dropdown2">
<img src="static/icons/octicon--device-mobile-24.svg" alt="Power" width="24" height="24" class="dropbtn2">
<div id="dropdown-content2" class="dropdown-content2">
<ul class="options">
<li><a href="#0"><span class="icon"><i class="shutdown" aria-hidden="true" onclick="lightdm.shutdown();"></i></span><span class="title" onclick="lightdm.shutdown();">Shutdown</span></a></li>
<li><a href="#0"><span class="icon"><i class="reboot" aria-hidden="true" onclick="lightdm.restart();"></i></span><span class="title" onclick="lightdm.restart();">Reboot</span></a></li>
<li><a href="#0"><span class="icon"><i class="suspend" aria-hidden="true" onclick="lightdm.suspend();"></i></span><span class="title" onclick="lightdm.suspend();">Suspend</span></a></li>
<li><a href="#0"><span class="icon"><i class="hibernate" aria-hidden="true" onclick="lightdm.hibernate();"></i></span><span class="title" onclick="lightdm.hibernate();">Hibernate</span></a></li>
</ul>
</div>
</div>
<script src="js/mock.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</body>
</body>
</html>