diff --git a/app/Resources/views/event/speaker/page.html.twig b/app/Resources/views/event/speaker/page.html.twig index 975e364ba..6e9ded820 100644 --- a/app/Resources/views/event/speaker/page.html.twig +++ b/app/Resources/views/event/speaker/page.html.twig @@ -111,7 +111,7 @@ {{ form_errors(speakers_contact_form.phone_number) }} - {{ form_widget(speakers_contact_form.submit) }} + {{ form_widget(speakers_contact_form.submit, {attr: {title: "Enregistrer le contact"}}) }} @@ -150,7 +150,7 @@
- {{ form_widget(speakers_diner_form.submit) }} + {{ form_widget(speakers_diner_form.submit, {attr: {title: "Enregistrer mes préférences pour le restaurant"}}) }}
{{ form_end(speakers_diner_form) }} @@ -196,7 +196,7 @@
- {{ form_widget(hotel_reservation_form.submit) }} + {{ form_widget(hotel_reservation_form.submit, {attr: {title: "Enregistrer les nuitées"}}) }}
{{ form_end(hotel_reservation_form) }} diff --git a/sources/AppBundle/Security/TestGithubAuthenticator.php b/sources/AppBundle/Security/TestGithubAuthenticator.php index 57dccfcf2..41cef4e37 100644 --- a/sources/AppBundle/Security/TestGithubAuthenticator.php +++ b/sources/AppBundle/Security/TestGithubAuthenticator.php @@ -82,6 +82,15 @@ private function getTestUsersDetails() 'avatar_url' => 'http://test2.com', ]; + $testUsers['agallou'] = [ + 'id' => 320372, + 'name' => 'agallou', + 'login' => 'agallou', + 'company' => 'AFUP', + 'html_url' => 'http://test2.com', + 'avatar_url' => 'http://test2.com', + ]; + return $testUsers; }