-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathuser.html
42 lines (42 loc) · 1.85 KB
/
user.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
<!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" type="text/css" href="css/user.css">
<link rel="icon"
type="image/png"
href="images/green-love.png">
<title>Register | Feeding Jabalpur</title>
</head>
<body>
<div class="hero">
<div class="form-box">
<div class="button-box">
<div id="btn"></div>
<button type="button" class="toggle-button" onclick="login()">Login</button>
<button type="button" class="toggle-button" onclick="register()">Register</button>
</div>
<div class="social-icons">
<img src="images/fb.png" alt="facebook">
<img src="images/gp.png" alt="google">
<img src="images/tw.png" alt="twitter">
</div>
<form id="login" class="input-group">
<input type="text" class="input-field" placeholder="User Id" required>
<input type="password" class="input-field" placeholder="Password" required>
<input type="checkbox" class="check-box"><span>Remember Password</span>
<button type="submit" class="submit-btn">Log in</button>
</form>
<form id="register" class="input-group">
<input type="text" class="input-field" placeholder="Email" required>
<input type="password" class="input-field" placeholder="Password" required>
<input type="checkbox" class="check-box"><span>I agree to the terms & conditions</span>
<button type="submit" class="submit-btn">Register</button>
</form>
</div>
</div>
<script src="script/script.js"></script>
</body>
</html>