-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.html
44 lines (39 loc) · 1.69 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE HTML>
<html>
<head>
<title>Waste Management App</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="/css/main.css" />
<link rel="stylesheet" type="text/css" href="/css/bootstrap.min.css">
</head>
<body class="is-loading">
<!-- Wrapper -->
<div id="wrapper">
<!-- Main -->
<section class="main">
<header>
<span class="avatar"><img src="img/profile.png" style="height:100px;width:100px" alt="" /></span>
<h1 style="margin-top: 1%">LOG IN</h1>
<hr>
</header>
<form id='loginform'>
<input type="email" name="email" id="email" placeholder="Email" style="margin-bottom:10px;" />
<input type="password" name="password" id="passwordconf" placeholder="Password" style="margin-bottom:10px;"/>
<input type="submit" value="LOG IN" id="loginbutton" style="margin-bottom:10px;">
<p class="msg"></p>
</form>
</section>
</div>
<!-- Scripts -->
<!--[if lte IE 8]><script src="assets/js/respond.min.js"></script><![endif]-->
<!-- <script>
if ('addEventListener' in window) {
window.addEventListener('load', function() { document.body.className = document.body.className.replace(/\bis-loading\b/, ''); });
document.body.className += (navigator.userAgent.match(/(MSIE|rv:11\.0)/) ? ' is-ie' : '');
}
</script> -->
<script type="text/javascript" src="/javascript/jquery.js"></script>
<script type="text/javascript" src="/javascript/loginf.js"></script>
</body>
</html>