File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -35,11 +35,11 @@ The goal of these tag helpers is to reduce the redundant coding, and compliance
3535The 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+ ##
You can’t perform that action at this time.
0 commit comments