Skip to content

Instantly share code, notes, and snippets.

@pokle
Created June 4, 2015 06:02
Show Gist options
  • Save pokle/1352f4a24788c2bddaec to your computer and use it in GitHub Desktop.
Save pokle/1352f4a24788c2bddaec to your computer and use it in GitHub Desktop.
Super simple login form
<!DOCTYPE html>
<html>
<head>
<title>CSSO</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<form class="form" action="/login">
<label for="email">Email: </label><input class="form-control" id="email" name="email" autofocus required>
<label for="password">Password: </label><input class="form-control" id="password" name="password" required>
<br/>
<input class="form-control btn btn-lg btn-primary" type="submit">
</form>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment