Skip to content

Commit 6575a9e

Browse files
Fixed documentation
1 parent e01265c commit 6575a9e

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ The goal of these tag helpers is to reduce the redundant coding, and compliance
3535
The following markup is how you would output a model-bound field for a password field, including a note on complexity and validation.
3636

3737
``` razor
38-
<div class="form-group">
39-
<label asp-for="Password" class="control-label"></label>
38+
<div class="mb-3">
39+
<label asp-for="Password" class="form-label"></label>
4040
<input asp-for="Password" class="form-control" />
4141
<span asp-validation-for="Password" class="text-danger"></span>
42-
<small class="form-text text-muted">Must be 8 characters with letters & numbers</small>
42+
<div class="form-text text-muted">Must be 8 characters with letters & numbers</div>
4343
</div>
4444
```
4545

@@ -75,4 +75,6 @@ At this time tag helpers have been implemented for the following elements.
7575
| Offcanvas | Full support for implementation of offcanvas display, including sizing/placement |
7676
| TextArea | Support for Form input controls tied to the `<textarea>` tag including ASP.NET Core Model Binding & Validation |
7777

78-
If you find that we are missing a particular tag helper, we welcome contributions!
78+
If you find that we are missing a particular tag helper, we welcome contributions!
79+
80+
##

0 commit comments

Comments
 (0)