-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (42 loc) · 1.59 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="css/materialize.min.css" media="screen,projection" />
<link rel="stylesheet" href="css/master.css">
<title>Login</title>
</head>
<body class="body">
<div class="col s12 a">
<div class="lgn-frm">
<div class="lgn-header">
<h3>Inventory Management System</h3>
</div>
<div class="row a">
<form class="col s12">
<div class="row">
<div class="input-field col s12 lgn">
<input id="email" type="email" class="validate">
<label for="email">Email</label>
</div>
<div class="input-field col s12 lgn">
<input id="password" type="password" class="validate">
<label for="password">Password</label>
</div>
<div class="input-field col s12 lgn">
<button class="btn a waves-effect waves-light" onclick="location.href='views/home.html'" type="button">Log in</button>
</div>
</div>
</form>
</div>
</div>
<p class="team">By<i class="team">MufasaOnAcid </i></p>
</div>
<script type="text/javascript" src="js/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="js/new$.js"></script>
<script type="text/javascript" src="js/materialize.min.js"></script>
</div>
</body>
</html>