adds autocomplete to email and username + fixes a typo

This commit is contained in:
Cody
2024-01-18 14:08:05 -08:00
committed by GitHub
parent 26872c829b
commit 6e90da90f1

View File

@ -69,9 +69,9 @@
<h2>@Localizer["ApplicationAdmin"]</h2><br />
<div class="container">
<div class="row mb-1 align-items-center">
<Label Class="col-sm-3" For="username" HelpText="Provide a username for the primary user accountt" ResourceKey="Username">Username:</Label>
<Label Class="col-sm-3" For="username" HelpText="Provide a username for the primary user account" ResourceKey="Username">Username:</Label>
<div class="col-sm-9">
<input id="username" type="text" class="form-control" @bind="@_hostUsername" />
<input id="username" type="text" class="form-control" @bind="@_hostUsername" autocomplete="username" />
</div>
</div>
<div class="row mb-1 align-items-center">
@ -95,7 +95,7 @@
<div class="row mb-1 align-items-center">
<Label Class="col-sm-3" For="email" HelpText="Provide the email address for the host user account" ResourceKey="Email">Email:</Label>
<div class="col-sm-9">
<input type="text" class="form-control" @bind="@_hostEmail" />
<input type="text" class="form-control" @bind="@_hostEmail" autocomplete="email" />
</div>
</div>
<div class="row mb-1 align-items-center">