aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Developer/client.html.twig
blob: 5cbe1c3915569226f1c09288747c68e4bb8bc696 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{% extends "WallabagCoreBundle::layout.html.twig" %}

{% block title %}{% trans %}New client{% endtrans %}{% endblock %}

{% block content %}
<div class="row">
    <div class="col s12">
        <div class="card-panel settings">

            <div class="row">
                <p>{% trans %}You are about to create a new client. Please fill the field below for the redirect URI of your application:{% endtrans %}</p>
                {{ form_start(form) }}
                {{ form_errors(form) }}

                <div class="input-field col s12">
                    {{ form_label(form.redirect_uris) }}
                    {{ form_errors(form.redirect_uris) }}
                    {{ form_widget(form.redirect_uris) }}
                </div>

                <a href="{{ path('developer') }}" class="waves-effect waves-light grey btn">{% trans %}Back{% endtrans %}</a>
                {{ form_widget(form.save, {'attr': {'class': 'btn waves-effect waves-light'}}) }}

                {{ form_rest(form) }}
            </div>

        </div>
    </div>
</div>

{% endblock %}