-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.html
53 lines (46 loc) · 1.17 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
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<title>Login</title>
<link href="/static/css/jcarousel.css" rel="stylesheet" />
<link href="/static/css/notification.css" rel="stylesheet" />
<link rel="stylesheet" href="style.css"/>
<style type="text/css">
body,html
{
width: 100%;
height:100%;
}
*
{
margin-left: 0px;
}
.d1
{
width: 40%;
height: 40%;
top: 10%;
margin-left: 28%;
position: relative;
}
</style>
</head>
<body>
<div class="d1">
<hr/>
<h1><font color="brown">Please Login:</font></h1>
<br/>
<form id="login_form" action="login" method="post">
<label class="grey" for="log">Email Address</label><br />
<input type="text" name="email" style="width:99%" id="email"><br>
<label class="grey" for="pwd">Password</label><br />
<input type="password" name="password" style="width:99%" id="password"><br />
<input type="submit" id="loginbtn" name="login" value="LOGIN" class="button"<br />
</form>
<br/>
<a href='register.html'>register</a>
<br/>
<a href='fb_demo.html'> Login with Facebook </a> <br/>
</div>
</body>
</html>