2013-10-02 04:50:48 +03:00
|
|
|
{% extends 'layout.html' %}
|
|
|
|
{% block body %}
|
|
|
|
|
|
|
|
<h2>Login</h2>
|
|
|
|
|
|
|
|
<form role="form" method="post">
|
|
|
|
<div class="form-group">
|
2013-10-03 17:58:07 +03:00
|
|
|
<label for="email">Email Address</label>
|
|
|
|
<input type="text" class="form-control" id="email" name="email" />
|
2013-10-02 04:50:48 +03:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="password">Password</label>
|
|
|
|
<input type="password" name="password" id="password" class="form-control" />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<input type="submit" class="btn btn-primary" value="Login" />
|
|
|
|
</form>
|
|
|
|
|
|
|
|
{% endblock %}
|