wallabag-kindle-consumer/wallabag_kindle_consumer/templates/index.html

32 lines
1.5 KiB
HTML

{% extends 'base.html' %}
{% import 'macros.html' as forms %}
{% block body %}
<div class="card">
<div class="card-header">Add or edit an account</div>
<div class="card-body">
<form method="post">
<div class="row">
{{ forms.input('user', "Username", description='Your wallabag username at ' + wallabag_host) }}
{{ forms.input('password', "Password", type='password', description='Your wallabag password at ' + wallabag_host + ". The password will not be stored") }}
</div>
<div class="row">
{{ forms.input('clientId', "Client id", description='A valid client id') }}
{{ forms.input('clientSecret', "Client secret", description='A valid client secret ' + wallabag_host) }}
</div>
<div class="row">
{{ forms.input('kindleEmail', "Kindle Email", type='email', description='Your kindle email addess ' + wallabag_host) }}
{{ forms.input('notifyEmail', "Alt. Email",type='email', description='An alternative email where we can send any problems. ' + wallabag_host) }}
</div>
<div class="row">
<div class="col-lg">
<button type="submit" class="btn btn-primary">Register</button>
</div>
</div>
</form>
</div>
</div>
{% endblock %}