rosh
4 years ago
1 changed files with 29 additions and 0 deletions
@ -0,0 +1,29 @@ |
|||||
|
<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, this)"> |
||||
|
<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, this)"> |
||||
|
<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> |
Loading…
Reference in new issue