You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.3 KiB
29 lines
1.3 KiB
<html>
|
|
<head>
|
|
<title>
|
|
Login and Registration Form
|
|
</title>
|
|
<link rel="stylesheet" href="Style.css">
|
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
|
|
<script src="movies.js"></script>
|
|
</head>
|
|
<body>
|
|
<div class ="login-page">
|
|
<div class="form">
|
|
<form class= "register-form" id="registerSubmit" onsubmit="submitForm(event)">
|
|
<input type="text" placeholder="username" id="formName" required>
|
|
<input type="password" placeholder="password" id="formPassword" required>
|
|
<input type="text" placeholder="email id" id="formEmail" required>
|
|
<button type="submit">Create</button>
|
|
<p class="message">Already Registered? <a href="#">Login</a></p>
|
|
</form>
|
|
<form class="login-form" id="loginSubmit"onsubmit="submitForm1(event)">
|
|
<input type ="text" placeholder="username" id="formName1" required>
|
|
<input type="password" placeholder="password" id="formPassword1" required>
|
|
<button type="submit">Login</button>
|
|
<p class="message">Not Registered? <a href="#">Register</a></p>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|