@@ -128,9 +128,9 @@ A) Configuring how your Users will Authenticate
128128~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
129129
130130The main job of a firewall is to configure *how * your users will authenticate.
131- Will they use a login form?Http Basic ? An API token? All of the above?
131+ Will they use a login form?HTTP basic authentication ? An API token? All of the above?
132132
133- Let's start withHttp Basic (the old-schoolpop-up ) and work up from there.
133+ Let's start withHTTP basic authentication (the old-schoolprompt ) and work up from there.
134134To activate this, add the ``http_basic `` key under your firewall:
135135
136136..configuration-block ::
@@ -265,7 +265,7 @@ user to be logged in to access this URL:
265265 You'll learn more about this ``ROLE_ADMIN `` thing and denying access
266266 later in the:ref: `security-authorization ` section.
267267
268- Great! Now, if you go to ``/admin ``, you'll see the HTTPBasic popup :
268+ Great! Now, if you go to ``/admin ``, you'll see the HTTPbasic auth prompt :
269269
270270..image ::/images/book/security_http_basic_popup.png
271271:align: center
@@ -376,7 +376,7 @@ probably only need one. If you *do* have multiple, you can configure which
376376Try to login using username ``admin `` and password ``kitten ``. You should
377377see an error!
378378
379- No encoder has been configured for account "Symfony\C omponent\S ecurity\C ore\U ser\U ser"
379+ No encoder has been configured for account "Symfony\\ Component\\ Security\\ Core\\ User\ \ User"
380380
381381To fix this, add an ``encoders `` key:
382382
@@ -598,8 +598,8 @@ before inserting them into the database? Don't worry, see
598598D) Configuration Done!
599599~~~~~~~~~~~~~~~~~~~~~~
600600
601- Congratulations! You now have a working authentication system that usesHttp
602- Basic and loads users right from the ``security.yml `` file.
601+ Congratulations! You now have a working authentication system that usesHTTP
602+ basic auth and loads users right from the ``security.yml `` file.
603603
604604Your next steps depend on your setup:
605605