]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/CoreBundle/Resources/views/themes/material/Developer/client.html.twig
Add translations
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Resources / views / themes / material / Developer / client.html.twig
CommitLineData
24152cdb
NL
1{% extends "WallabagCoreBundle::layout.html.twig" %}
2
6a2c524a 3{% block title %}{% trans %}New client{% endtrans %}{% endblock %}
24152cdb
NL
4
5{% block content %}
b6321bed
NL
6<div class="row">
7 <div class="col s12">
8 <div class="card-panel settings">
24152cdb 9
b6321bed 10 <div class="row">
1256f6fe 11 <p>{% trans %}You are about to create a new client. Please fill the field below for the redirect URI of your application.{% endtrans %}</p>
abc32945
NL
12 {{ form_start(form) }}
13 {{ form_errors(form) }}
2c2308b7 14
abc32945
NL
15 <div class="input-field col s12">
16 {{ form_label(form.redirect_uris) }}
17 {{ form_errors(form.redirect_uris) }}
18 {{ form_widget(form.redirect_uris) }}
19 </div>
abc32945
NL
20
21 <a href="{{ path('developer') }}" class="waves-effect waves-light grey btn">{% trans %}Back{% endtrans %}</a>
2c2308b7
JB
22 {{ form_widget(form.save, {'attr': {'class': 'btn waves-effect waves-light'}}) }}
23
24 {{ form_rest(form) }}
b6321bed
NL
25 </div>
26
27 </div>
28 </div>
29</div>
24152cdb
NL
30
31{% endblock %}