-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
81 lines (78 loc) · 3.21 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Login & Registration</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div id="LoginAndRegistrationForm">
<h1 id="formTitle">Login</h1>
<div id="formSwitchBtn">
<button onclick="ShowLoginForm()" id="ShowLoginBtn" class="active">Login</button>
<button onclick="ShowRegistrationForm()" id="ShowRegistrationBtn">Registration</button>
</div>
<div id="LoginFrom">
<form action="#">
<div class="center">
<input id="LoginEmail" class="input-text" type="text" placeholder="Email Address">
<input id="LoginPassword" class="mt-10 input-text" type="password" placeholder="Password">
</div>
<div class="forgot-pass-remember-me mt-10">
<div class="forgot-pass">
<a id="ForgotPassword" href="JavaScript:void(0);" onclick="ShowForgotPasswordForm()" >Forgot Password?</a>
</div>
<div class="remember-me">
<input id="rememberMe" type="checkbox">
<label for="rememberMe">Remember Me</label>
</div>
</div>
<div class="center mt-20">
<input onclick="return ValidateLoginForm();" class="Submit-Btn" type="submit" value="Login" id="LoginBtn">
</div>
</form>
<p class="center mt-20 dont-have-account">
Don't have an account?
<a href="JavaScript:void(0);" onclick="ShowRegistrationForm()">Registration now</a>
</p>
</div>
<div id="RegistrationFrom">
<form action="#">
<div class="center">
<input id="RegiName" class="input-text" type="text" placeholder="Full Name">
<input id="RegiEmailAddres" class="input-text mt-10" type="email" placeholder="Email Address">
<input id="RegiPassword" class="mt-10 input-text" type="password" placeholder="Password">
<input id="RegiConfirmPassword" class="mt-10 input-text" type="password" placeholder="Confirm Password">
</div>
<div class="center mt-20">
<input onclick="return ValidateRegistrationForm();" class="Submit-Btn" type="submit" value="Registration" id="RegistrationitBtn">
</div>
</form>
<p class="center mt-20 already-have-account">
Already have an account?
<a href="#" onclick="ShowLoginForm()">Login now</a>
</p>
</div>
<div id="ForgotPasswordForm">
<form action="">
<div class="center mt-20">
<input class="input-text " type="email" id="forgotPassEmail" placeholder="Email Address">
</div>
<div class="center mt-20">
<input onclick="return ValidateForgotPasswordForm();" class="Submit-Btn" type="submit" value="Reset Password" id="PasswordResetBtn" >
</div>
</form>
<p class="center mt-20 already-have-account">
Back to the
<a href="JavaScript:void(0);" onclick="ShowLoginForm()">Login page</a> | <a href="JavaScript:void(0);" onclick="ShowRegistrationForm()">Registration page</a>
</p>
</div>
</div>
<p style="text-align: center;" > ❤ <a style="text-decoration: none; color: #006000; font-weight: bolder;" href="">More Source Code</a></p>
</div>
<script src="main.js" type="text/javascript"></script>
<script src="validation.js" type="text/javascript"></script>
</body>
</html>