mirror of
https://github.com/janeczku/calibre-web
synced 2024-10-31 15:20:28 +00:00
ba7c734657
Certificate files are rejected if not both files are provided Server shuts down controlled after pressing crtl+c Logfile location is better checked improvements for better testing (added ids and name in templates)
23 lines
902 B
HTML
23 lines
902 B
HTML
{% extends "layout.html" %}
|
|
{% block body %}
|
|
<div class="well col-sm-6 col-sm-offset-2">
|
|
<h2 style="margin-top: 0">{{_('Register a new account')}}</h2>
|
|
<form method="POST" role="form">
|
|
<div class="form-group required">
|
|
<label for="nickname">{{_('Username')}}</label>
|
|
<input type="text" class="form-control" id="nickname" name="nickname" placeholder="{{_('Choose a username')}}" required>
|
|
</div>
|
|
<div class="form-group required">
|
|
<label for="email">{{_('E-mail address')}}</label>
|
|
<input type="email" class="form-control" id="email" name="email" placeholder="{{_('Your email address')}}" required>
|
|
</div>
|
|
<button type="submit" id="submit" class="btn btn-primary">{{_('Register')}}</button>
|
|
</form>
|
|
</div>
|
|
{% if error %}
|
|
<div class="col-sm-6 col-sm-offset-2">
|
|
<div class="alert alert-danger">{{error}}</div>
|
|
</div>
|
|
{% endif %}
|
|
{% endblock %}
|