move elementreference for autofocus
This commit is contained in:
parent
eb05a6659b
commit
7447214512
1 changed files with 2 additions and 3 deletions
|
@ -8,7 +8,7 @@
|
|||
@using NSeguin.Dev.Web.Services
|
||||
@inject IContactService ContactService
|
||||
|
||||
<div class="max-w-lg lg:ms-auto mx-auto text-center @(Model.IsHidden ? "hidden" : "")" id="@Id">
|
||||
<div class="max-w-lg lg:ms-auto mx-auto text-center @(Model.IsHidden ? "hidden" : "")" id="@Id" @ref="_elementReference">
|
||||
<div class="py-16 px-7 rounded-md bg-white shadow-blue-100">
|
||||
<EditForm Model="@Model" OnValidSubmit="@Model.Send" class="w-full">
|
||||
<DataAnnotationsValidator/>
|
||||
|
@ -40,14 +40,13 @@
|
|||
<ValidationMessage For="@(() => Model.Message)" class="text-red-500"/>
|
||||
<InputTextArea @bind-Value="Model.Message" id="contact-form-message" Placeholder="Enter your message here..." rows="5" cols="" class="w-full border border-gray-300 rounded-md py-2 px-3 focus:outline-none focus:border-blue-700"></InputTextArea>
|
||||
</div>
|
||||
<div class="md:col-span-2" @ref="_elementReference">
|
||||
<div class="md:col-span-2">
|
||||
<button type="submit" class="py-3 text-base font-medium rounded text-slate-50 bg-blue-600 w-full hover:bg-blue-700 transition duration-300">Submit</button>
|
||||
</div>
|
||||
@if (Model.IsSending)
|
||||
{
|
||||
<Spinner AltText="Sending..."></Spinner>
|
||||
}
|
||||
|
||||
</div>
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue