]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/CoreBundle/Resources/views/themes/common/Developer/client.html.twig
Notifications
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Resources / views / themes / common / Developer / client.html.twig
CommitLineData
8a4690b6
NL
1{% extends "WallabagCoreBundle::layout.html.twig" %}
2
3fae7f1d 3{% block title %}{{ 'developer.client.page_title'|trans }}{% endblock %}
8a4690b6
NL
4
5{% block content %}
378aaefb 6{{ parent() }}
8a4690b6
NL
7<div class="row">
8 <div class="col s12">
9 <div class="card-panel settings">
10
11 <div class="row">
3fae7f1d 12 <p>{{ 'developer.client.page_description'|trans }}</p>
8a4690b6
NL
13 {{ form_start(form) }}
14 {{ form_errors(form) }}
2c2308b7 15
9c545fe0
TC
16 <div class="input-field col s12">
17 {{ form_label(form.name) }}
18 {{ form_errors(form.name) }}
19 {{ form_widget(form.name) }}
20 </div>
21
8a4690b6
NL
22 <div class="input-field col s12">
23 {{ form_label(form.redirect_uris) }}
24 {{ form_errors(form.redirect_uris) }}
25 {{ form_widget(form.redirect_uris) }}
26 </div>
8a4690b6 27
3fae7f1d 28 <a href="{{ path('developer') }}" class="waves-effect waves-light grey btn">{{ 'developer.client.action_back'|trans }}</a>
2c2308b7
JB
29 {{ form_widget(form.save, {'attr': {'class': 'btn waves-effect waves-light'}}) }}
30
31 {{ form_rest(form) }}
8a4690b6
NL
32 </div>
33
34 </div>
35 </div>
36</div>
37
38{% endblock %}