]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/CoreBundle/Resources/views/themes/common/Developer/client.html.twig
Add client_credentials as grant_type
[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
0f8268c9 3{% block title %}{{ 'apps.old_client.page_title'|trans }}{% endblock %}
8a4690b6
NL
4
5{% block content %}
6<div class="row">
7 <div class="col s12">
8 <div class="card-panel settings">
9
10 <div class="row">
0f8268c9 11 <p>{{ 'apps.old_client.page_description'|trans }}</p>
8a4690b6
NL
12 {{ form_start(form) }}
13 {{ form_errors(form) }}
2c2308b7 14
9c545fe0
TC
15 <div class="input-field col s12">
16 {{ form_label(form.name) }}
17 {{ form_errors(form.name) }}
18 {{ form_widget(form.name) }}
19 </div>
20
0f8268c9 21 <a href="{{ path('apps') }}" class="waves-effect waves-light grey btn">{{ 'apps.old_client.action_back'|trans }}</a>
2c2308b7
JB
22 {{ form_widget(form.save, {'attr': {'class': 'btn waves-effect waves-light'}}) }}
23
24 {{ form_rest(form) }}
8a4690b6
NL
25 </div>
26
27 </div>
28 </div>
29</div>
30
31{% endblock %}