mirror of
https://github.com/janeczku/calibre-web
synced 2024-11-05 09:36:20 +00:00
bbf6d9b026
Bugfix for feeds - removed categories related and up - load new books now working - category random now working login page is free of non accessible elements boolean custom column is vivible in UI books with only with certain languages can be shown book shelfs can be deleted from UI Anonymous user view is more resticted Added browse of series in sidebar Dependencys in vendor folder are updated to newer versions (licencs files are now present) Bugfix editing Authors names Made upload on windows working
28 lines
969 B
HTML
28 lines
969 B
HTML
{% extends "layout.html" %}
|
|
{% block body %}
|
|
<div class="well col-sm-6 col-sm-offset-2">
|
|
<h2 style="margin-top: 0">{{_('Login')}}</h2>
|
|
<form method="POST" role="form">
|
|
<div class="form-group">
|
|
<label for="username">{{_('Username')}}</label>
|
|
<input type="text" class="form-control" id="username" name="username" placeholder="{{_('Username')}}">
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="password">{{_('Password')}}</label>
|
|
<input type="password" class="form-control" id="password" name="password" placeholder="{{_('Password')}}">
|
|
</div>
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="remember_me" checked> {{_('Remember me')}}
|
|
</label>
|
|
</div>
|
|
<button type="submit" class="btn btn-default">{{_('Submit')}}</button>
|
|
</form>
|
|
</div>
|
|
{% if error %}
|
|
<div class="col-sm-6 col-sm-offset-2">
|
|
<div class="alert alert-danger">{{error}}</div>
|
|
</div>
|
|
{% endif %}
|
|
{% endblock %}
|