Update account confirm typos (#6809)

put a dot after the end of the quote
exiting => existing
pull/6818/head
Antoine Griffard 2018-06-02 19:53:19 +02:00 committed by Rick Anderson
parent 1b57ed0619
commit 9be59a33e4
1 changed files with 3 additions and 3 deletions

View File

@ -104,7 +104,7 @@ See [Require HTTPS](xref:security/enforcing-ssl).
<a name="prevent-login-at-registration"></a>
## Require email confirmation
It's a best practice to confirm the email of a new user registration. Email confirmation helps to verify they're not impersonating someone else (that is, they haven't registered with someone else's email). Suppose you had a discussion forum, and you wanted to prevent "yli@example.com" from registering as "nolivetto@contoso.com." Without email confirmation, "nolivetto@contoso.com" could receive unwanted email from your app. Suppose the user accidentally registered as "ylo@example.com" and hadn't noticed the misspelling of "yli". They wouldn't be able to use password recovery because the app doesn't have their correct email. Email confirmation provides only limited protection from bots. Email confirmation doesn't provide protection from malicious users with many email accounts.
It's a best practice to confirm the email of a new user registration. Email confirmation helps to verify they're not impersonating someone else (that is, they haven't registered with someone else's email). Suppose you had a discussion forum, and you wanted to prevent "yli@example.com" from registering as "nolivetto@contoso.com". Without email confirmation, "nolivetto@contoso.com" could receive unwanted email from your app. Suppose the user accidentally registered as "ylo@example.com" and hadn't noticed the misspelling of "yli". They wouldn't be able to use password recovery because the app doesn't have their correct email. Email confirmation provides only limited protection from bots. Email confirmation doesn't provide protection from malicious users with many email accounts.
You generally want to prevent new users from posting any data to your web site before they have a confirmed email.
@ -302,7 +302,7 @@ The two accounts have been combined. You are able to log on with either account.
## Enable account confirmation after a site has users
Enabling account confirmation on a site with users locks out all the existing users. Existing users are locked out because their accounts aren't confirmed. To work around exiting user lockout, use one of the following approaches:
Enabling account confirmation on a site with users locks out all the existing users. Existing users are locked out because their accounts aren't confirmed. To work around existing user lockout, use one of the following approaches:
* Update the database to mark all existing users as being confirmed
* Update the database to mark all existing users as being confirmed.
* Confirm exiting users. For example, batch-send emails with confirmation links.