-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (36 loc) · 1.72 KB
/
index.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
<!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">
<title>Document</title>
<link rel="stylesheet" href="sty.css">
</head>
<body>
<div class="hero">
<div class="form-box">
<div class="button-box">
<div id="btn"></div>
<button type="button" class="toggle-btn" onclick="login()">Register</button>
<button type="button" class="toggle-btn" onclick="register()" >Log in</button>
</div>
<form id="register" class="input-group">
<input type="text" class="input-field" placeholder="User Id" required>
<input type="password" class="input-field" placeholder="Enter Password" required>
<input type="checkbox" class="check-box"><span>Remember Password</span>
<button type="submit" class="submit-btn"><a href="prj1.html">Log in</a></button>
</form>
<form id="login" class="input-group">
<input type="text" class="input-field" placeholder="First name ">
<input type="text" class="input-field" placeholder="Last name ">
<input type="email" class="input-field" placeholder="Email Id">
<input type="password" class="input-field" placeholder="Enter Password">
<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 href="prj2.js"></script>
</body>
</html>