-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (63 loc) · 3.11 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
<!DOCTYPE html>
<html>
<head>
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!--Import materialize.css-->
<link type="text/css" rel="stylesheet" href="css/materialize.min.css" media="screen,projection"/>
<link type="text/css" rel="stylesheet" href="css/index.css">
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
</head>
<body>
<div>
<ul class="side-nav fixed indigo darken-4">
<li class="active"><a href="#"><i class="small white-text material-icons">home</i></a></li>
<li><a href="#"><i class="small white-text material-icons">perm_identity</i></a></li>
<li><a href="#"><i class="small white-text material-icons">polymer</i></a></li>
<li><a href="#"><i class="small white-text material-icons">invert_colors</i></a></li>
</ul>
</div>
<div class="container">
<!--nyuma ya about hajeho contact page -->
<div id="login" class="row">
<h4 class="center white-text"> Login</h4>
<div class="col s12 m8 l8 offset-l2 center">
<div class="row">
<div class="input-field col s12 m12 l12">
<i class="material-icons prefix white-text">account_circle</i>
<input class="validate" type="text" id="icon_prefix">
<label for="icon_prefix">Username or Email</label>
</div>
<div class="input-field col s12 m12 l12">
<i class="material-icons prefix white-text">vpn_key</i>
<input class="validate" type="password" id="icon_email">
<label for="icon_email">Password</label>
</div>
</div>
<div class="row">
<div class="col s12 m12 l12">
<a href="#">forgot password?</a>
</div>
</div>
<div class="row">
<div class="col s12 m12 l12 ">
<button class="btn waves-effect indigo waves-light big-btn" type="submit" name="action">Login
</button>
</div>
</div>
<div class="row">
<div class="col s12 m12 l12">
<button class="btn waves-effect indigo waves-light big-btn" type="submit" name="action">Register
</button>
</div>
</div>
</div>
<div class="col s12 m2 l2"></div>
</div>
</div>
<!--Import jQuery before materialize.js-->
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="js/materialize.min.js"></script>
</body>
</html>