1
0
mirror of https://github.com/Luzifer/cloudkeys-go.git synced 2024-09-19 23:52:57 +00:00
cloudkeys-go/templates/login.html

22 lines
761 B
HTML
Raw Normal View History

2015-07-29 07:01:23 +00:00
{% 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 %}