]> git.immae.eu Git - github/wallabag/wallabag.git/blob - src/Wallabag/CoreBundle/Resources/views/themes/baggy/Developer/client.html.twig
add tests
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Resources / views / themes / baggy / Developer / client.html.twig
1 {% extends "WallabagCoreBundle::layout.html.twig" %}
2
3 {% block title %}{% trans %}New client{% endtrans %}{% endblock %}
4
5 {% block content %}
6 <div class="row">
7 <div class="col s12">
8 <div class="card-panel settings">
9
10 <div class="row">
11 <p>{% trans %}You will create a new client. Please fill the field below for the redirect URI of your application:{% endtrans %}</p>
12 {{ form_start(form) }}
13 {{ form_errors(form) }}
14 <div class="input-field col s12">
15 {{ form_label(form.redirect_uris) }}
16 {{ form_errors(form.redirect_uris) }}
17 {{ form_widget(form.redirect_uris) }}
18 </div>
19 <div class="hidden">{{ form_rest(form) }}</div>
20
21 <a href="{{ path('developer') }}" class="waves-effect waves-light grey btn">{% trans %}Back{% endtrans %}</a>
22 <button class="btn waves-effect waves-light" type="submit" name="action">
23 {% trans %}Create new client{% endtrans %}
24 </button>
25 </div>
26
27 </div>
28 </div>
29 </div>
30
31 {% endblock %}