forked from steevjames/WirelessPrintingApp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.html
30 lines (30 loc) · 1.33 KB
/
login.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Login</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/css/materialize.min.css">
<link rel="stylesheet" type="text/css" href="/public/css/style.css">
</head>
<body>
<div id="loginDiv">
<form class="form">
<div class="input-field">
<input placeholder="Username" id="loginusername" type="text" class="validate">
</div>
<div class="input-field col s6">
<input placeholder="Password" id="loginpassword" type="password" class="validate">
</div>
<button class="waves-effect waves-light btn" type="submit" id="loginButton">Login</button><br><br>
Not Registered Yet? <a id="registerNow" href="/register.html">Register Here</a> <br>
<a id="forgotPassword">Forgot Password?</a><br><span id="errorMsg"></span>
</form>
</div>
<div id="collegeDiv">
</div>
</body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/js/materialize.min.js"></script>
<script src="/public/js/loginjs.js"></script>
</html>