Skip to content

Commit bed2ec8

Browse files
ThomasLandauerjaviereguiluz
authored andcommitted
[Security] Minor rewording
1 parent 0a93d6b commit bed2ec8

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

security.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -768,13 +768,13 @@ Finally, create or update the template:
768768

769769
<form action="{{ path('app_login') }}" method="post">
770770
<label for="username">Email:</label>
771-
<input type="text" id="username" name="_username" value="{{ last_username }}"/>
771+
<input type="text" id="username" name="_username" value="{{ last_username }}">
772772

773773
<label for="password">Password:</label>
774-
<input type="password" id="password" name="_password"/>
774+
<input type="password" id="password" name="_password">
775775

776776
{# If you want to control the URL the user is redirected to on success
777-
<input type="hidden" name="_target_path" value="/account"/> #}
777+
<input type="hidden" name="_target_path" value="/account"> #}
778778

779779
<button type="submit">login</button>
780780
</form>

security/form_login.rst

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -142,26 +142,26 @@ previously requested URL and always redirect to the default page:
142142
Control the Redirect Using Request Parameters
143143
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
144144

145-
The URL to redirect after the login can be defined using the ``_target_path``
146-
parameter of GET and POST requests. Its value must be a relative or absolute
145+
The URL to redirect to after the login can be dynamically defined using the ``_target_path``
146+
parameter of the GET or POST request. Its value must be a relative or absolute
147147
URL, not a Symfony route name.
148148

149-
Defining the redirect URL via GET using a query string parameter:
149+
For GET, use a query string parameter:
150150

151151
.. code-block:: text
152152
153153
http://example.com/some/path?_target_path=/dashboard
154154
155-
Defining the redirect URL via POST using a hidden form field:
155+
For POST, use a hidden form field:
156156

157157
.. code-block:: html+twig
158158

159-
{# templates/security/login.html.twig #}
160-
<form action="{{ path('login') }}" method="post">
159+
{# templates/login/index.html.twig #}
160+
<form action="{{ path('app_login') }}" method="post">
161161
{# ... #}
162162

163-
<input type="hidden" name="_target_path" value="{{ path('account') }}"/>
164-
<input type="submit" name="login"/>
163+
<input type="hidden" name="_target_path" value="{{ path('account') }}">
164+
<input type="submit" name="login">
165165
</form>
166166

167167
Using the Referring URL
@@ -304,8 +304,8 @@ This option can also be set via the ``_failure_path`` request parameter:
304304
<form action="{{ path('login') }}" method="post">
305305
{# ... #}
306306

307-
<input type="hidden" name="_failure_path" value="{{ path('forgot_password') }}"/>
308-
<input type="submit" name="login"/>
307+
<input type="hidden" name="_failure_path" value="{{ path('forgot_password') }}">
308+
<input type="submit" name="login">
309309
</form>
310310

311311
Customizing the Target and Failure Request Parameters
@@ -383,7 +383,7 @@ are now fully customized:
383383
<form action="{{ path('login') }}" method="post">
384384
{# ... #}
385385

386-
<input type="hidden" name="go_to" value="{{ path('dashboard') }}"/>
387-
<input type="hidden" name="back_to" value="{{ path('forgot_password') }}"/>
388-
<input type="submit" name="login"/>
386+
<input type="hidden" name="go_to" value="{{ path('dashboard') }}">
387+
<input type="hidden" name="back_to" value="{{ path('forgot_password') }}">
388+
<input type="submit" name="login">
389389
</form>

0 commit comments

Comments
 (0)