-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
55 lines (50 loc) · 1.62 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
<!DOCTYPE html>
<head>
<title>Welcome to Docket</title>
<link rel="stylesheet" href='http://fonts.googleapis.com/css?family=Dosis:400,700,500|Nunito:300,400,600' />
<link rel="stylesheet" href="css/plugins.css">
<link rel="stylesheet" href="css/style_sana.css">
</head>
<body>
<div class="loginContainer">
<div class="headerImage">
<a href="SignIn.html"><img class="logo" src="images/poster.png" alt="" ></a>
<div class="form1">
<div class="login-content">
<h3>Login</h3>
<form method="post" action="UserProfile.html">
<div class="row">
<label for="username">
Username:
<input type="text" name="username" id="username" placeholder="Your Email" required/>
</label>
</div>
<div class="row">
<label for="password">
Password:
<input type="password" name="password" id="password" placeholder="Your Password" required/>
</label>
</div>
<div class="row">
<button type="submit">Login</button>
</div>
</form>
<div class="row">
<p><b>Or with...</b></p>
<div class="social-btn-2">
<a class="fb" href="UserProfile.html"><i class="ion-social-facebook"></i>Facebook</a>
<a class="tw" href="UserProfile.html"><i class="ion-social-google"></i>Google</a>
</div>
</div>
<div class="row">
<br>
<div class="wemail">
<a href="SignUp.html">Sign Up with email</a>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>