-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (40 loc) · 1.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>loginform</title>
<link rel="stylesheet" href="CSS/styles.css">
<script src="https://kit.fontawesome.com/85ccb27854.js" crossorigin="anonymous"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript" src="js/scripts.js"></script>
</head>
<body>
<div class="container">
<form method = "post" action="">
<h1>Log in to your account</h1>
<h3>X</h3>
<hr id="top-hr">
<button id="facebook">
<a href="http://facebook.com">
<i class="fab fa-facebook-f"></i>
Continue with facebook
</a>
</button>
<button id="google">
<a href="http://google.com">
<i class="fa fa-google"></i>
Continue with Google
</a>
</button>
<input type="email" name="email" id="email" placeholder=" Email">
<input type="password" name="password" id="password" placeholder=" Password">
<input type="submit" value="Login" id="log">
<p id="frgtpass"><a href="">Forget your password?</a></p>
<hr id="top-hr">
<p id="signup">Don't have an account? <a href="signup.html">Sign Up</a></p>
</form>
</div>
</body>
</html>