Skip to content

Instantly share code, notes, and snippets.

@Haerawn
Haerawn / index.html
Created February 14, 2020 09:33
Login Form
<div class="login">
<h1>Login</h1>
<form method="post">
<input type="text" name="u" placeholder="Username" required="required" />
<input type="password" name="p" placeholder="Password" required="required" />
<button type="submit" class="btn btn-primary btn-block btn-large">Let me in.</button>
</form>
</div>