Skip to content

Instantly share code, notes, and snippets.

@brixmavu
Last active March 30, 2022 10:07
Show Gist options
  • Save brixmavu/fd3ed94769a0a788bd0525ca170251ab to your computer and use it in GitHub Desktop.
Save brixmavu/fd3ed94769a0a788bd0525ca170251ab to your computer and use it in GitHub Desktop.
<form id="login" action="/login" method="post">
<h1>Login</h1>
<p>
<label>Username</label><br>
<input type="text" name="username">
</p>
<p>
<label>Password</label><br>
<input type="password" name="password" required>
</p>
<p><button>Login</button></p>
<a href="#" >You don't have an account yet? Register Here</a>
<br>
<a href="#" >Forgot Password</a>
</form>
<form id="registration" action="/signup" method="post">
<h1>Registration</h1>
<p>
<label>First name</label><br>
<input type="text" name="first_name" required>
</p>
<p>
<label>Phone number</label><br>
<input type="tel" name="phone">
</p>
<p>
<label>Password</label><br>
<input type="password" name="password" required>
</p>
<p>
<button>Sign up</button>
</p>
<a href="#" >You have an account already? Login Here</a>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment