help text update

This commit is contained in:
Grayson Walker
2020-04-10 21:49:57 -04:00
parent 252d5ff2af
commit 89066ecfd0
18 changed files with 165 additions and 165 deletions

View File

@ -88,10 +88,10 @@
}
<tr>
<td>
<label class="control-label">Is Deleted? </label>
<Label For="isDeleted" HelpText="Has the user been deleted">Is Deleted? </Label>
</td>
<td>
<select class="form-control" @bind="@isdeleted">
<select id="isDeleted" class="form-control" @bind="@isdeleted">
<option value="True">Yes</option>
<option value="False">No</option>
</select>

View File

@ -12,10 +12,10 @@ else
<table class="table table-borderless">
<tr>
<td>
<label class="control-label">Role: </label>
<Label For="role" HelpText="What is the role of this user">Role: </Label>
</td>
<td>
<select class="form-control" @bind="@roleid">
<select id="role" class="form-control" @bind="@roleid">
<option value="-1">&lt;Select Role&gt;</option>
@foreach (Role role in roles)
{
@ -26,18 +26,18 @@ else
</tr>
<tr>
<td>
<label class="control-label">Effective Date: </label>
<Label For="effectiveDate" HelpText="The date that this role is implemented">Effective Date: </Label>
</td>
<td>
<input class="form-control" @bind="@effectivedate" />
<input id="effectiveDate" class="form-control" @bind="@effectivedate" />
</td>
</tr>
<tr>
<td>
<label class="control-label">Expiry Date: </label>
<Label For="expiryDate" HelpText="The date that this role expires">Expiry Date: </Label>
</td>
<td>
<input class="form-control" @bind="@expirydate" />
<input id="expiryDate" class="form-control" @bind="@expirydate" />
</td>
</tr>
</table>