{% extends "WallabagCoreBundle::layout.html.twig" %} {% block title %}{% trans %}New client{% endtrans %}{% endblock %} {% block content %}

{% trans %}You are about to create a new client. Please fill the field below for the redirect URI of your application.{% endtrans %}

{{ form_start(form) }} {{ form_errors(form) }}
{{ form_label(form.redirect_uris) }} {{ form_errors(form.redirect_uris) }} {{ form_widget(form.redirect_uris) }}
{% trans %}Back{% endtrans %} {{ form_widget(form.save, {'attr': {'class': 'btn waves-effect waves-light'}}) }} {{ form_rest(form) }}
{% endblock %}