-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (69 loc) · 2.96 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/bf50564c9b.js" crossorigin="anonymous"></script>
<title>Log In | Register</title>
</head>
<body>
<div class="container col-sm-6 col-lg-6 col-xl-4">
<div class="text-center p-4">
<h2>
Login with Social Media
<small class="text-muted">or email</small>
</h2>
</div>
<div class="row">
<div class="btn-group-vertical col">
<a href="#" class="btn btn-facebook"><i class="fa fa-facebook fa fw"></i> Facebook
</a>
<a href="#" class="btn btn-twitter"><i class="fa-brands fa-square-twitter"></i> Twitter
</a>
<a href="#" class="btn btn-google"><i class="fa-brands fa-google"></i> Google
</a>
<a href="#" class="btn btn-dark"><i class="fa-brands fa-github"></i> Github
</a>
</div>
</div>
<div class="row">
<div class="col my-3">
<p class="text-center text-muted">or sign in</p>
</div>
</div>
<div class="col-sm">
<form class="form-horizontal" action="/action_page.php">
<div class="form-group">
<div class="col-sm">
<input class="form-control" type="text" name="username" placeholder="Username" required>
</div>
<div class="col-sm my-2">
<input type="password" name="password" placeholder="Password" class="form-control" required>
</div>
<div class="col-sm my-2">
<input class="form-control btn-success" type="submit" value="Submit">
</div>
<div class="col-sm my-2">
<div class="checkbox">
<label><input type="checkbox"> Remember me</label>
</div>
</div>
</div>
</form>
</div>
<div class="row text-center ">
<div class="col">
<a href="sign-up.html" class="btn btn-outline-info">Sign Up</a>
</div>
<div class="col">
<a href="#" class="btn btn-outline-info btn-fluid">Forgot password?</a>
</div>
</div>
<!--END OF BOTTOM CONTAINER-->
</div>
<!--END OF MAIN-->
</body>
</html>