How to customize your Form Login
Edit this pageWarning: You are browsing the documentation for Symfony 2.0, which is no longer maintained.
Read the updated version of this page for Symfony 6.3 (the current stable version).
How to customize your Form Login
Using a form login for authentication is a common, and flexible, method for handling authentication in Symfony2. Pretty much every aspect of the form login can be customized. The full, default configuration is shown in the next section.
Form Login Configuration Reference
To see the full form login configuration reference, see Security Configuration Reference. Some of the more interesting options are explained below.
Redirecting after Success
You can change where the login form redirects after a successful login using
the various config options. By default the form will redirect to the URL the
user requested (i.e. the URL which triggered the login form being shown).
For example, if the user requested http://www.example.com/admin/post/18/edit
,
then after she successfully logs in, she will eventually be sent back to
http://www.example.com/admin/post/18/edit
.
This is done by storing the requested URL in the session.
If no URL is present in the session (perhaps the user went
directly to the login page), then the user is redirected to the default page,
which is /
(i.e. the homepage) by default. You can change this behavior
in several ways.
Changing the Default Page
First, the default page can be set (i.e. the page the user is redirected to
if no previous page was stored in the session). To set it to /admin
use
the following config:
1 2 3 4 5 6 7
# app/config/security.yml
security:
firewalls:
main:
form_login:
# ...
default_target_path: /admin
1 2 3 4 5 6 7 8
<!-- app/config/security.xml -->
<config>
<firewall>
<form-login
default_target_path="/admin"
/>
</firewall>
</config>
1 2 3 4 5 6 7 8 9 10 11 12 13
// app/config/security.php
$container->loadFromExtension('security', array(
'firewalls' => array(
'main' => array(
// ...
'form_login' => array(
// ...
'default_target_path' => '/admin',
),
),
),
));
Now, when no URL is set in the session, users will be sent to /admin
.
Always Redirect to the Default Page
You can make it so that users are always redirected to the default page regardless
of what URL they had requested previously by setting thealways_use_default_target_path
option to true:
1 2 3 4 5 6 7
# app/config/security.yml
security:
firewalls:
main:
form_login:
# ...
always_use_default_target_path: true
1 2 3 4 5 6 7 8
<!-- app/config/security.xml -->
<config>
<firewall>
<form-login
always_use_default_target_path="true"
/>
</firewall>
</config>
1 2 3 4 5 6 7 8 9 10 11 12 13
// app/config/security.php
$container->loadFromExtension('security', array(
'firewalls' => array(
'main' => array(
// ...
'form_login' => array(
// ...
'always_use_default_target_path' => true,
),
),
),
));
Using the Referring URL
In case no previous URL was stored in the session, you may wish to try using
the HTTP_REFERER
instead, as this will often be the same. You can do
this by setting use_referer
to true (it defaults to false):
1 2 3 4 5 6 7
# app/config/security.yml
security:
firewalls:
main:
form_login:
# ...
use_referer: true
1 2 3 4 5 6 7 8
<!-- app/config/security.xml -->
<config>
<firewall>
<form-login
use_referer="true"
/>
</firewall>
</config>
1 2 3 4 5 6 7 8 9 10 11 12 13
// app/config/security.php
$container->loadFromExtension('security', array(
'firewalls' => array(
'main' => array(
// ...
'form_login' => array(
// ...
'use_referer' => true,
),
),
),
));
Control the Redirect URL from inside the Form
You can also override where the user is redirected to via the form itself by
including a hidden field with the name _target_path
. For example, to
redirect to the URL defined by some account
route, use the following:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
{# src/Acme/SecurityBundle/Resources/views/Security/login.html.twig #}
{% if error %}
<div>{{ error.message }}</div>
{% endif %}
<form action="{{ path('login_check') }}" method="post">
<label for="username">Username:</label>
<input type="text" id="username" name="_username" value="{{ last_username }}" />
<label for="password">Password:</label>
<input type="password" id="password" name="_password" />
<input type="hidden" name="_target_path" value="account" />
<input type="submit" name="login" />
</form>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<!-- src/Acme/SecurityBundle/Resources/views/Security/login.html.php -->
<?php if ($error): ?>
<div><?php echo $error->getMessage() ?></div>
<?php endif; ?>
<form action="<?php echo $view['router']->generate('login_check') ?>" method="post">
<label for="username">Username:</label>
<input type="text" id="username" name="_username" value="<?php echo $last_username ?>" />
<label for="password">Password:</label>
<input type="password" id="password" name="_password" />
<input type="hidden" name="_target_path" value="account" />
<input type="submit" name="login" />
</form>
Now, the user will be redirected to the value of the hidden form field. The
value attribute can be a relative path, absolute URL, or a route name. You
can even change the name of the hidden form field by changing the target_path_parameter
option to another value.
1 2 3 4 5 6
# app/config/security.yml
security:
firewalls:
main:
form_login:
target_path_parameter: redirect_url
1 2 3 4 5 6 7 8
<!-- app/config/security.xml -->
<config>
<firewall>
<form-login
target_path_parameter="redirect_url"
/>
</firewall>
</config>
1 2 3 4 5 6 7 8 9 10
// app/config/security.php
$container->loadFromExtension('security', array(
'firewalls' => array(
'main' => array(
'form_login' => array(
'target_path_parameter' => redirect_url,
),
),
),
));
Redirecting on Login Failure
In addition to redirecting the user after a successful login, you can also set the URL that the user should be redirected to after a failed login (e.g. an invalid username or password was submitted). By default, the user is redirected back to the login form itself. You can set this to a different URL with the following config:
1 2 3 4 5 6 7
# app/config/security.yml
security:
firewalls:
main:
form_login:
# ...
failure_path: /login_failure
1 2 3 4 5 6 7 8
<!-- app/config/security.xml -->
<config>
<firewall>
<form-login
failure_path="login_failure"
/>
</firewall>
</config>
1 2 3 4 5 6 7 8 9 10 11 12 13
// app/config/security.php
$container->loadFromExtension('security', array(
'firewalls' => array(
'main' => array(
// ...
'form_login' => array(
// ...
'failure_path' => login_failure,
),
),
),
));