Created
June 4, 2015 06:02
-
-
Save pokle/1352f4a24788c2bddaec to your computer and use it in GitHub Desktop.
Super simple login form
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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