feat : supprimer
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
commit
032b27f5fa
@ -0,0 +1,23 @@
|
|||||||
|
@page "/addAdministrators"
|
||||||
|
@using Blazor.Models
|
||||||
|
|
||||||
|
<h3>AddAdministrators</h3>
|
||||||
|
|
||||||
|
<EditForm Model="@administratorsModel" OnValidSubmit="@HandleValidSubmit">
|
||||||
|
<DataAnnotationsValidator />
|
||||||
|
<ValidationSummary />
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<label for="username">
|
||||||
|
Username:
|
||||||
|
<InputText id="username" @bind-Value="administratorsModel.Username" />
|
||||||
|
</label>
|
||||||
|
<label>
|
||||||
|
Password:
|
||||||
|
<InputText id="hashedpassword" @bind-Value="administratorsModel.hashedPassword" />
|
||||||
|
</label>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
<button type="submit">Submit</button>
|
||||||
|
</EditForm>
|
Loading…
Reference in new issue