forked from TeamVikngs/Connect
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
129 lines (128 loc) · 3.74 KB
/
index.html
File metadata and controls
129 lines (128 loc) · 3.74 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, shrink-to-fit=no"
/>
<title>login</title>
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css" />
<link rel="stylesheet" href="assets/fonts/font-awesome.min.css" />
<link rel="stylesheet" href="assets/css/styles.css" />
</head>
<body>
<div class="d-flex flex-column justify-content-center" id="login-box">
<div class="login-box-header">
<h4
style="
color: rgb(139, 139, 139);
margin-bottom: 0px;
font-weight: 400;
font-size: 27px;
"
>
Login
</h4>
</div>
<div class="login-box-content">
<div class="fb-login box-shadow">
<a
class="d-flex flex-row align-items-center social-login-link"
href="#"
><i
class="fa fa-facebook"
style="
margin-left: 0px;
padding-right: 20px;
padding-left: 22px;
width: 56px;
"
></i
>Login with Facebook</a
>
</div>
<div class="gp-login box-shadow">
<a
class="d-flex flex-row align-items-center social-login-link"
style="margin-bottom: 10px"
href="#"
><i
class="fa fa-google"
style="color: rgb(255, 255, 255); width: 56px"
></i
>Login with Google</a
>
</div>
</div>
<div
class="d-flex flex-row align-items-center login-box-seperator-container"
>
<div class="login-box-seperator"></div>
<div class="login-box-seperator-text">
<p
style="
margin-bottom: 0px;
padding-left: 10px;
padding-right: 10px;
font-weight: 400;
color: rgb(201, 201, 201);
"
>
or
</p>
</div>
<div class="login-box-seperator"></div>
</div>
<div class="email-login" style="background-color: #ffffff">
<input
type="email"
class="email-input form-control"
style="margin-top: 10px"
required=""
placeholder="Email"
minlength="6"
/><input
type="password"
class="password-input form-control"
style="margin-top: 10px"
required=""
placeholder="Password"
minlength="6"
/>
</div>
<div class="submit-row" style="margin-bottom: 8px; padding-top: 0px">
<button
class="btn btn-primary btn-block box-shadow"
id="submit-id-submit"
type="submit"
>
Login
</button>
<div class="d-flex justify-content-between">
<div class="form-check form-check-inline" id="form-check-rememberMe">
<input
class="form-check-input"
type="checkbox"
id="formCheck-1"
for="remember"
style="cursor: pointer"
name="check"
/><label class="form-check-label" for="formCheck-1"
><span class="label-text">Remember Me</span></label
>
</div>
<a id="forgot-password-link" href="#">Forgot Password?</a>
</div>
</div>
<div
id="login-box-footer"
style="padding: 10px 20px; padding-bottom: 23px; padding-top: 18px"
>
<p style="margin-bottom: 0px">
Don't you have an account?<a id="register-link" href="#">Sign Up!</a>
</p>
</div>
</div>
</body>
</html>