forked from Github-Mirrors/canaille
14 lines
375 B
HTML
14 lines
375 B
HTML
{% extends theme('base.html') %}
|
|
{% import 'fomanticui.html' as sui %}
|
|
|
|
{% block content %}
|
|
<div class="loginform">
|
|
<h3 class="ui top attached header">
|
|
{% trans %}Add a client{% endtrans %}
|
|
</h3>
|
|
|
|
<div class="ui attached clearing segment">
|
|
{{ sui.render_form(form, _("Confirm")) }}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|