-
Notifications
You must be signed in to change notification settings - Fork 0
/
eaterysignup.html
57 lines (48 loc) · 2.02 KB
/
eaterysignup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>college eateries</title>
<!-- font awesome cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css">
<!-- custom css file link -->
<link rel="stylesheet" href="main.css">
</head>
<body>
<nav>
<div class="main">
<div class="navbar">
<h2 class="logo">College Eateries</h2>
</div>
</div>
</div>
</nav>
<div class="background-image">
<div class="form-box">
<div class="button-box">
<div id="btn"></div>
<button type="button"class="toggle-btn">Sign Up</button>
</div>
<form id="login" class="input-group">
<input type="text"class="input-field"placeholder="Email"
required>
<input type="text"class="input-field"placeholder="Chef code"
required>
<input type="text"class="input-field" placeholder="Enter Password"
required>
<input type="checkbox" class="chech-box"><span>Remember Password</span>
<button type="submit" class="submit-btn"><a href="eaterylogin.html">Sign in</a></button>
</form>
<form id="register" class="input-group">
<input type="text"class="input-field" placeholder="User Id"required>
<input type="email"class="input-field"placeholder="Email Id"required>
<input type="text"class="input-field"placeholder="Enter Password"
required>
<input type="checkbox"class="chech-box"><span>Iagree to the terms & conditions</span>
<button type="submit"class="submit-btn">Register</button>
</form>
</div>
</div>
</body>
</html>