-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (53 loc) · 2.45 KB
/
Copy pathindex.html
File metadata and controls
53 lines (53 loc) · 2.45 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
41
42
43
44
45
46
47
48
49
50
51
52
53
<!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>Login</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="full-page">
<div class="navbar">
<div>
<a href='website.html'>Seek Coding</a>
</div>
<nav>
<ul id='MenuItems'>
<li><a href='#'>Home</a></li>
<li><a href='#'>About Us</a></li>
<li><a href='#'>Services</a></li>
<li><a href='#'>Contact</a></li>
<li><button class='loginbtn' onclick="document.getElementById('login- form').style.display='block'" style="width:auto;">Login</button></li>
</ul>
</nav>
</div>
<div id='login-form'class='login-page'>
<div class="form-box">
<div class='button-box'>
<div id='btn'></div>
<button type='button'onclick='login()'class='toggle-btn'>Log In</button>
<button type='button'onclick='register()'class='toggle-btn'>Register</button>
</div>
<form id='login' class='input-group-login'>
<input type='text'class='input-field'placeholder='Email 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'>Log in</button>
</form>
<form id='register' class='input-group-register'>
<input type='text'class='input-field'placeholder='First Name' required>
<input type='text'class='input-field'placeholder='Last Name ' required>
<input type='email'class='input-field'placeholder='Email Id' required>
<input type='password'class='input-field'placeholder='Enter Password' required>
<input type='password'class='input-field'placeholder='Confirm Password' required>
<input type='checkbox'class='check-box'><span>I agree to the terms and conditions</span>
<button type='submit'class='submit-btn'>Register</button>
</form>
</div>
</div>
</div>
<link rel="stylesheet" href="./anexo.js">
</body>
</html>