]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - 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
index edebc7ee7ddaa31acfb1618e160c6fe28ede4bd6..5ab357003bb2464af3ed81254f1ffd6f4e9cd242 100644 (file)
@@ -1,9 +1,24 @@
 {% extends "WallabagCoreBundle::layout.html.twig" %}
 
-{% block title %}{% trans %}New client{% endtrans %}{% endblock %}
+{% block title %}{% trans %}New application{% endtrans %}{% endblock %}
 
 {% block content %}
+<div class="row">
+    <div class="col s12">
+        <div class="card-panel settings">
 
-    Client ID: {{ client_id }}
+            <div class="row">
+                <h3>My application parameters</h3>
+                <p>Here are your application parameters.</p>
+                <ul>
+                    <li>Client ID: {{ client_id }}</li>
+                    <li>Client Secret: {{ client_secret }}</li>
+                </ul>
+                <a class="waves-effect waves-light btn" href="{{ path('developer') }}">Back to Developer main page</a>
+            </div>
+
+        </div>
+    </div>
+</div>
 
 {% endblock %}