use Label component in Module Creator templates

This commit is contained in:
Shaun Walker 2020-08-31 10:00:30 -04:00
parent cb1c725ec1
commit e76f1b9663
4 changed files with 8 additions and 8 deletions

View File

@ -10,10 +10,10 @@
<table class="table table-borderless"> <table class="table table-borderless">
<tr> <tr>
<td> <td>
<label class="control-label">Name: </label> <Label For="name" HelpText="Enter a name">Name: </Label>
</td> </td>
<td> <td>
<input id="_name" class="form-control" @bind="@_name" /> <input id="name" class="form-control" @bind="@_name" />
</td> </td>
</tr> </tr>
</table> </table>

View File

@ -5,10 +5,10 @@
<table class="table table-borderless"> <table class="table table-borderless">
<tr> <tr>
<td> <td>
<label for="Setting" class="control-label">Setting: </label> <Label For="value" HelpText="Enter a value">Name: </Label>
</td> </td>
<td> <td>
<input type="text" class="form-control" @bind="_value" /> <input id="value" type="text" class="form-control" @bind="@_value" />
</td> </td>
</tr> </tr>
</table> </table>

View File

@ -10,10 +10,10 @@
<table class="table table-borderless"> <table class="table table-borderless">
<tr> <tr>
<td> <td>
<label class="control-label">Name: </label> <Label For="name" HelpText="Enter a name">Name: </Label>
</td> </td>
<td> <td>
<input id="_name" class="form-control" @bind="@_name" /> <input id="name" class="form-control" @bind="@_name" />
</td> </td>
</tr> </tr>
</table> </table>

View File

@ -5,10 +5,10 @@
<table class="table table-borderless"> <table class="table table-borderless">
<tr> <tr>
<td> <td>
<label for="Setting" class="control-label">Setting: </label> <Label For="value" HelpText="Enter a value">Name: </Label>
</td> </td>
<td> <td>
<input type="text" class="form-control" @bind="_value" /> <input id="value" type="text" class="form-control" @bind="@_value" />
</td> </td>
</tr> </tr>
</table> </table>