-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpersonal.html
60 lines (59 loc) · 2.63 KB
/
personal.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
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Empowering the Nation</title>
<link rel="stylesheet" href="login-signup.css">
<link rel="icon" href="logo2.ico" type="image/x-icon">
</head>
<body>
<img src="logo2.ico" class="logo-img">
<div class="container">
<div class="form-container sign-up-container">
<form id="signUpForm">
<h2>Empowering the nation</h2>
<h1>Create Account</h1>
<input type="text" placeholder="Username" name="username" required>
<input type="email" placeholder="Email" name="email" required>
<input type="password" placeholder="Password" name="password" required>
<input type="password" placeholder="Confirm Password" name="confirm_password" required>
<button><a href = "home.html">Sign Up</a></button>
<div class="back-button" id="backButton">
<a href="#" onclick="switchToSignIn()">← Back</a>
</div>
</form>
</div>
<div class="form-container sign-in-container">
<form id="signInForm">
<h2>Empowering the nation</h2>
<h1>Sign In</h1>
<input type="email" placeholder="Email" name="email" required>
<input type="password" placeholder="Password" name="password" required>
<button><a href = "home.html">Sign In</a></button>
<a href="#">Forgot your password?</a>
</form>
</div>
<div class="overlay-container">
<div class="overlay">
<div class="overlay-panel overlay-left">
<img src="logo.jpg" alt="Logo" id="overlay-image" style="max-width: 100%; height: auto;">
</div>
<div class="overlay-panel overlay-right">
<center>
<h1>Hello, Friend!</h1>
<p>Enter your personal details and start your journey with us</p>
</center>
<button class="ghost" id="signUp" onclick="switchToSignUp()">Sign Up</button>
</div>
</div>
</div>
</div>
<br><br><br><br>
<footer>
<p><a href="notSignedInPrivacy.html">Privacy Policy</a> | <a href="notSignedInTerms.html">Terms of Service</a></p>
<p>© KOV 2024. All rights reserved.</p>
</footer>
<script src="login-signup.js"></script>
</body>
</html>