-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (39 loc) · 2.01 KB
/
index.html
File metadata and controls
40 lines (39 loc) · 2.01 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
<!DOCTYPE html>
<html>
<head>
<title>Login and Registration Form</title>
<link rel="stylesheet" href="styleLG.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()">Login</button>
<button type="button" class="toggle-btn" onclick="register()"> Register</button>
</div>
<div class="social-icons">
<img src="fb.png" alt="">
<img src="github.png" alt="">
<img src="gmail.png" alt="">
</div>
<form id="login" class="input-group">
<input type="text" id="UserID" class="input-field" placeholder="User ID">
<input type="text" id="Pass" class="input-field" placeholder="Enter Password">
<input type="checkbox" class="check-box"> <span>Remember Password</span>
<input type="button" class="submit-btn" value="Login" onclick="LOGIN1()"/>
<!--<button type="submit" class="submit-btn" onclick="LOGIN1()">Log In</button> -->
</form>
<form id="register" class="input-group">
<input type="text" class="input-field" placeholder="User ID">
<input type="email" class="input-field" placeholder="Email ID">
<input type="text" 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" onclick="REGISTER1()">Register</button> -->
<input type="button" class="submit-btn" value="Register" onclick="REGISTER1()"/>
</form>
</div>
</div>
<script src="myScript.js"></script>
</body>
</html>