Skip to content

Commit fa091c8

Browse files
committed
fix note format
1 parent 19bbfbb commit fa091c8

3 files changed

Lines changed: 15 additions & 16 deletions

File tree

docs/customization/login_identifier.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ This only works with the Session authenticator.
2323
```
2424
!!! warning
2525

26-
It is very important for security that if you add a new column for identifier, you must write a new **Validation Rules** and then set it using the [Customizing Validation Rules](./validation_rules.md) description.
26+
It is very important for security that if you add a new column for identifier, you must write a new **Validation Rules** and then set it using the [Customizing Validation Rules](./validation_rules.md) description.
2727

2828
3. Edit the login form to change the name of the default `email` input to the new field name.
2929

docs/getting_started/concepts.md

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -80,14 +80,13 @@ public $passwordValidators = [
8080

8181
You use `strong_password` rule for password validation explained above.
8282

83-
> **Note**
84-
> The `strong_password` rule only supports use cases to check the user's own password.
85-
> It fetches the authenticated user's data for **NothingPersonalValidator**
86-
> if the visitor is authenticated.
87-
>
88-
> If you want to have use cases that set and check another user's password,
89-
> you can't use `strong_password`. You need to use `service('passwords')` directly
90-
> to check the password.
91-
>
92-
> But remember, it is not good practice to set passwords for other users.
93-
> This is because the password should be known only by that user.
83+
!!! note
84+
85+
The `strong_password` rule only supports use cases to check the user's own password.
86+
It fetches the authenticated user's data for **NothingPersonalValidator**
87+
if the visitor is authenticated.
88+
If you want to have use cases that set and check another user's password,
89+
you can't use `strong_password`. You need to use `service('passwords')` directly
90+
to check the password.
91+
But remember, it is not good practice to set passwords for other users.
92+
This is because the password should be known only by that user.

docs/getting_started/install.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ Require it with an explicit version constraint allowing its desired stability.
6464

6565
!!! note
6666

67-
If you want to customize table names, you must change the table names before running database migrations.
68-
See [Customizing Table Names](../customization/table_names.md).
67+
If you want to customize table names, you must change the table names before running database migrations.
68+
See [Customizing Table Names](../customization/table_names.md).
6969

7070
2. Configure **app/Config/Email.php** to allow Shield to send emails with the [Email Class](https://codeigniter.com/user_guide/libraries/email.html).
7171

@@ -142,8 +142,8 @@ your project.
142142

143143
!!! note
144144

145-
If you want to customize table names, you must change the table names before running database migrations.
146-
See [Customizing Table Names](../customization/table_names.md).
145+
If you want to customize table names, you must change the table names before running database migrations.
146+
See [Customizing Table Names](../customization/table_names.md).
147147

148148
```console
149149
php spark migrate --all

0 commit comments

Comments
 (0)