Cleanup form

- Avoid too much hidden data in the form (instead of manually define the submit button and hide the default, use the default one !)
- Fix HTML syntax in client_parameters
- Add developer link in baggy menu
- Fix space between link in material footer
This commit is contained in:
Jeremy Benoist
2016-03-05 20:04:19 +01:00
parent 5bf8f3f164
commit 2c2308b783
12 changed files with 16 additions and 20 deletions

View File

@ -15,7 +15,7 @@ class ClientType extends AbstractType
{
$builder
->add('redirect_uris', UrlType::class, array('required' => true))
->add('save', SubmitType::class)
->add('save', SubmitType::class, array('label' => 'Create new client'))
;
$builder->get('redirect_uris')