Browse Source

adding Login.html

master
rosh 4 years ago
parent
commit
668eeec7d5
  1. 29
      Login.html

29
Login.html

@ -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…
Cancel
Save