-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsign.html
129 lines (110 loc) · 3.55 KB
/
sign.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
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>
<!-- Coding By CodingNepal - codingnepalweb.com -->
<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" />
<title>Responsive Login and Signup Form</title>
<!-- CSS -->
<link rel="stylesheet" href="style.css" />
<!-- Boxicons CSS -->
<link
href="https://unpkg.com/boxicons@2.1.2/css/boxicons.min.css"
rel="stylesheet"
/>
</head>
<body>
<section class="container forms">
<div class="form login">
<div class="form-content">
<header>Login</header>
<form action="#">
<div class="field input-field">
<input type="email" placeholder="Email" class="input" />
</div>
<div class="field input-field">
<input type="password" placeholder="Password" class="password" />
<i class="bx bx-hide eye-icon"></i>
</div>
<div class="form-link">
<a href="#" class="forgot-pass">Forgot password?</a>
</div>
<div class="field button-field">
<button>Login</button>
</div>
</form>
<div class="form-link">
<span
>Don't have an account?
<a href="#" class="link signup-link">Signup</a></span
>
</div>
</div>
<div class="line"></div>
<div class="media-options">
<a href="#" class="field facebook">
<i class="bx bxl-facebook facebook-icon"></i>
<span>Login with Facebook</span>
</a>
</div>
<div class="media-options">
<a href="#" class="field google">
<img src="./google-img.png" alt="" class="google-img" />
<span>Login with Google</span>
</a>
</div>
</div>
<!-- Signup Form -->
<!-- <div class="form signup">
<div class="form-content">
<header>Signup</header>
<form>
<div class="field input-field">
<input type="email" placeholder="Email" class="input" />
</div>
<div class="field input-field">
<input
type="password"
placeholder="Create password"
class="password"
/>
</div>
<div class="field input-field">
<input
type="password"
placeholder="Confirm password"
class="password"
/>
<i class="bx bx-hide eye-icon"></i>
</div>
<div class="field button-field">
<button>Signup</button>
</div>
</form>
<div class="form-link">
<span
>Already have an account?
<a href="#" class="link login-link">Login</a></span
>
</div>
</div>
<div class="line"></div>
<div class="media-options">
<a href="#" class="field facebook">
<i class="bx bxl-facebook facebook-icon"></i>
<span>Login with Facebook</span>
</a>
</div>
<div class="media-options">
<a href="#" class="field google">
<img src="./google-img.png" alt="" class="google-img" />
<span>Login with Google</span>
</a>
</div>
</div> -->
</section>
<!-- JavaScript -->
<script src="script.js"></script>
</body>
</html>