aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/material/Developer/client.html.twig
blob: 061f46312bd22178c718add5ab13302f62c50c0b (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 will 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>
                <div class="hidden">{{ form_rest(form) }}</div>

                <a href="{{ path('developer') }}" class="waves-effect waves-light grey btn">{% trans %}Back{% endtrans %}</a>
                <button class="btn waves-effect waves-light" type="submit" name="action">
                    {% trans %}Create new client{% endtrans %}
                </button>
            </div>

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

{% endblock %}