mirror of
https://github.com/Luzifer/cloudkeys-go.git
synced 2024-11-08 14:10:05 +00:00
22 lines
761 B
HTML
22 lines
761 B
HTML
|
{% extends "outer.html" %}
|
||
|
{% block title %}Login{% endblock %}
|
||
|
{% block pagetype %}login{% endblock %}
|
||
|
{% block content %}
|
||
|
{% if error %}
|
||
|
<div class="row">
|
||
|
<div class="col-md-4 col-md-push-4 alert alert-danger fade in">
|
||
|
<h4>Login Failed</h4>
|
||
|
<p>For security reasons we don't have more information for you. Sorry.</p>
|
||
|
</div>
|
||
|
</div>
|
||
|
{% endif %}
|
||
|
<div class="row">
|
||
|
<form class="form-signin" method="post">
|
||
|
<h2 class="form-signin-heading">Please sign in</h2>
|
||
|
<input type="text" name="username" class="form-control" placeholder="Username">
|
||
|
<input type="password" name="password" class="form-control" placeholder="Password">
|
||
|
<button class="btn btn-lg btn-primary btn-block" type="submit">Sign in</button>
|
||
|
</form>
|
||
|
</div>
|
||
|
{% endblock %}
|