Created
November 23, 2015 19:35
-
-
Save danielgynn/b0f855d96022f9f74e4a to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<% include partials/head %> | |
<body> | |
<div class="col-sm-8 col-sm-offset-2"> | |
<div class="jumbotron text-center"> | |
<h1><span class="fa fa-sign-in"></span> Login</h1> | |
<% if (message != null) { %> | |
<div class="alert-danger"><%= message %></div> | |
<% } %> | |
<form action="/login" method="post"> | |
<div class="form-group"> | |
<label>Email</label> | |
<input type="text" class="form-control" name="email"> | |
</div> | |
<div class="form-group"> | |
<label>Password</label> | |
<input type="password" class="form-control" name="password" /> | |
</div> | |
<div> | |
<input type="submit" class="form-control" value="Submit" /> | |
</div> | |
</form> | |
</div> | |
<hr> | |
<span class="fa fa-sign-in"> Don't have an account?<a href="/signup"> Signup</a></span> | |
<p>Or go <a href="/">home</a>.</p> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment