-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
68 lines (59 loc) · 2.81 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>FrontDesk</title>
<link rel="stylesheet" href="./contents/bootstrap/4.1.3/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="css/util.css">
<link rel="stylesheet" type="text/css" href="vendor/animate/animate.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="fonts/font-awesome-4.7.0/css/font-awesome.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="fonts/Linearicons-Free-v1.0.0/icon-font.min.css">
<link rel="stylesheet" type="text/css" href="vendor/css-hamburgers/hamburgers.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/animsition/css/animsition.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" href="./css/main.css" />
<script>
let $ = require('jquery');
</script>
<script>
require('popper.js');
</script>
<script>
require('bootstrap');
</script>
</head>
<body>
<div class="limiter overflow-hidden">
<div class="container-login100" style="background-image: url('images/bg-01.jpg');">
<div class="wrap-login100 p-b-50">
<div class="d-flex justify-content-center align-items-center no-select">
<h1 style="color: white; text-shadow: 1px 2px 10px rgba(0,0,0,0.52);">FrontDesk</h1>
</div>
<div class="d-flex justify-content-center align-items-center m-b-40 no-select">
<span class="text-center" style="color: white; text-shadow: 1px 1px 8px rgba(0,0,0,0.62);">The Cross-platform Desktop App for Event Registrations, ticketing and transactions. </span>
</div>
<form class="login100-form validate-form p-b-33 p-t-5">
<div class="wrap-input100 validate-input" data-validate="Enter username">
<input class="input100" type="text" id="username" placeholder="Username">
<span class="focus-input100" data-placeholder=""></span>
</div>
<div class="wrap-input100 validate-input" data-validate="Enter password">
<input class="input100" type="password" id="pass" placeholder="Password">
<span class="focus-input100" data-placeholder=""></span>
</div>
<div class="container-login100-form-btn m-t-32">
<button id="login" class="login100-form-btn">
Login
</button>
</div>
</form>
</div>
<span id="aboutButton" class="fa-icon" data-placeholder="" style="position: absolute; bottom:18px;right:25px;color:white;font-size:20px;cursor:pointer;"></span>
</div>
</div>
<script src="./js/index.js"></script>
</body>
</html>