wallabag/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Developer/client.html.twig

32 lines
1 KiB
Twig
Raw Normal View History

2016-02-16 19:18:59 +00:00
{% 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">
2016-03-05 21:29:58 +00:00
<p>{% trans %}You are about to create a new client. Please fill the field below for the redirect URI of your application.{% endtrans %}</p>
2016-02-16 19:18:59 +00:00
{{ form_start(form) }}
{{ form_errors(form) }}
2016-02-16 19:18:59 +00:00
<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) }}
2016-02-16 19:18:59 +00:00
</div>
</div>
</div>
</div>
{% endblock %}