-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathindex.html
More file actions
87 lines (79 loc) · 3.1 KB
/
index.html
File metadata and controls
87 lines (79 loc) · 3.1 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
<!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" />
<meta name="autor" content="afeef" />
<meta name="discribtion" content="Login page design" />
<!-- Custom style -->
<link href="layoutStyle.css" rel="stylesheet" />
<!-- font-awesome cdn -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css"
integrity="sha512-YWzhKL2whUzgiheMoBFwW8CKV4qpHQAEuvilg9FAn5VJUDwKZZxkJNuGM4XkWuk94WCrrwslk8yWNGmY1EduTA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>Login Page</title>
</head>
<body>
<!-- total content -->
<div class="content-wrapper">
<!-- inner container -->
<div class="container">
<!-- page title -->
<div class="title">
<span>Login </span>
</div>
<input style="margin-top: 2%;" type="password" id="password" name="fname" placeholder="Password"><br><br>
<button class="login-btn">LOGIN</button>
<br>
<br>
<span class="otherLogin ">
Or login with<br>
</span>
<button class="fb">
<a href="#" class="fb btn">
<i class="fa fa-facebook "></i> Facebook
</a>
</button>
<button class="google">
<a href="#" class="google btn"><i class="fa fa-google-plus">
</i> Google
</a>
</button>
<br>
<br>
<br>
<div class="notmember flex">
<span class="notMember flex">
Not a member?
</span>
<a class="signup" href="#"> Sign Up Now</a>
</div>
</div>
</div>
<!-- orm inputs section -->
<div class="inputs">
<input type="email" class="text-input" placeholder=" Email or Username" />
<i class="fas fa-user fa-2x"></i>
<input type="password" class="text-input" placeholder="Password" />
<button type="submit" class="submit-btn">Login</button>
</div>
<div class="inputPassword">
</div>
<!-- other login method section -->
<div class="other-login-methods">
<div class="login-message">Or login with</div>
<div class="login-methods">
<span class="login-method"><span class="icon"><i class="fab fa-facebook-f"></i></span>Facebook</span>
<span class="login-method gplus-section"><span class="icon"><i
class="fab fa-google-plus-g"></i></span>Google</span>
</div>
</div>
<!-- sign up section -->
<div class="sign-up-section">
Not a member ? <a class="sign-up">sign up</a>
</div>
</div>
</div>
</body>
</html>