]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/CoreBundle/Resources/views/themes/material/Developer/client.html.twig
Added developer documentation
[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
b6321bed 3{% block title %}{% trans %}New application{% 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
NL
10 <div class="row">
11 <h3>My application parameters</h3>
12 <p>Here are your application parameters.</p>
13 <ul>
14 <li>Client ID: {{ client_id }}</li>
15 <li>Client Secret: {{ client_secret }}</li>
16 </ul>
17 <a class="waves-effect waves-light btn" href="{{ path('developer') }}">Back to Developer main page</a>
18 </div>
19
20 </div>
21 </div>
22</div>
24152cdb
NL
23
24{% endblock %}