-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
181 lines (171 loc) · 6.08 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<base href="./" />
<title>Home | GM ERP</title>
<!-- Favicon -->
<link href="./assets/img/brand/favicon.png" rel="icon" type="image/png" />
<!-- Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700"
rel="stylesheet"
/>
<!-- Icons -->
<link href="./assets/vendor/nucleo/css/nucleo.min.css" rel="stylesheet" />
<link
href="./assets/vendor/@fortawesome/fontawesome-free/css/all.min.css"
rel="stylesheet"
/>
<!-- Argon CSS -->
<link type="text/css" href="./assets/css/argon.min.css" rel="stylesheet" />
</head>
<body class="bg-default">
<!-- Checking if user has already logged in -->
<script>
if (!(localStorage.getItem("user") === null)) {
// window.location = "./../../profile.html";
}
</script>
<!-- Main content -->
<div class="main-content">
<!-- Header -->
<div class="header bg-gradient-primary py-5">
<div class="container">
<div class="header-body text-center mb-7">
<div class="row justify-content-center">
<div class="col-xl-5 col-lg-6 col-md-8 px-5">
<h1 class="text-white">Welcome!</h1>
<p class="text-lead text-white">
Garage Management ERP System for providing optimal work
efficiency at a garage!
</p>
</div>
</div>
</div>
</div>
<div class="separator separator-bottom separator-skew zindex-100">
<svg
x="0"
y="0"
viewBox="0 0 2560 100"
preserveAspectRatio="none"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
>
<polygon
class="fill-default"
points="2560 0 2560 100 0 100"
></polygon>
</svg>
</div>
</div>
<!-- Page content -->
<div class="container mt--8 pb-5">
<div class="row justify-content-center">
<div class="col-lg-5 col-md-7">
<div class="card bg-secondary border-0 mb-0">
<div class="card-body px-lg-5 py-lg-5">
<form role="form">
<div class="form-group mb-3">
<div
class="
input-group input-group-merge input-group-alternative
"
>
<div class="input-group-prepend">
<span class="input-group-text">
<i class="ni ni-email-83"></i>
</span>
</div>
<input
class="form-control"
placeholder="Uid"
type="text"
id="uid_field"
/>
</div>
</div>
<div class="form-group">
<div
class="
input-group input-group-merge input-group-alternative
"
>
<div class="input-group-prepend">
<span class="input-group-text">
<i class="ni ni-lock-circle-open"></i>
</span>
</div>
<input
class="form-control"
placeholder="Password"
type="password"
id="password_field"
/>
</div>
</div>
<div
class="
custom-control custom-control-alternative custom-checkbox
"
>
<input
class="custom-control-input"
id=" customCheckLogin"
type="checkbox"
/>
<label class="custom-control-label" for=" customCheckLogin">
<span class="text-muted">Remember me</span>
</label>
</div>
<div class="text-center">
<button
type="button"
id="login-submit"
class="btn btn-primary my-4"
>
Sign in
</button>
</div>
</form>
</div>
</div>
<div class="row mt-3">
<div class="col-6">
<a href="#" class="text-light">
<small>Forgot password?</small>
</a>
</div>
<div class="col-6 text-right">
<a href="#" class="text-light">
<small>Request new account</small>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Argon Scripts -->
<!-- Core -->
<script src="./assets/vendor/jquery/dist/jquery.min.js"></script>
<script src="./assets/vendor/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
<script src="./assets/vendor/js-cookie/js.cookie.js"></script>
<script src="./assets/vendor/jquery.scrollbar/jquery.scrollbar.min.js"></script>
<script src="./assets/vendor/jquery-scroll-lock/dist/jquery-scrollLock.min.js"></script>
<!-- Argon JS -->
<script src="./assets/js/argon.js?v=1.2.0"></script>
<!-- Firebase SDKs -->
<script src="https://www.gstatic.com/firebasejs/9.4.0/firebase-app-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/9.4.0/firebase-database-compat.js"></script>
<!-- Firebase config -->
<script src="./custom-assets/js/firebase-config.js"></script>
<!-- Custom scripts -->
<script src="./custom-assets/js/index.js"></script>
</body>
</html>