19 lines
446 B
Smarty
19 lines
446 B
Smarty
{% extends 'base.tpl' %}
|
|
{% block title %}
|
|
Log in
|
|
{% endblock %}
|
|
{% block content %}
|
|
<div class="auth">
|
|
<form method="post">
|
|
<p>
|
|
<label for="username">Username</label>
|
|
<input type="text" name="username" />
|
|
</p>
|
|
<p>
|
|
<label for="username">Password</label>
|
|
<input type="password" name="password" />
|
|
</p>
|
|
<input type="submit" value="Log in" />
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|