Created
May 19, 2025 19:48
-
-
Save conwid/20aa86a0c9b79ecb8f5586a9e81bb743 to your computer and use it in GitHub Desktop.
Gist created from visual studio extension
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <EditForm Model="@applyModelSource" OnValidSubmit="SubmitAsync"> | |
| <DataAnnotationsValidator /> | |
| <ValidationSummary /> | |
| <div class="form-group"> | |
| <InputText @bind-Value="applyModelSource.Name" /> | |
| </div> | |
| <div class="form-group"> | |
| <InputText @bind-Value="applyModelSource.Role" /> | |
| </div> | |
| <div class="form-group"> | |
| <InputText @bind-Value="applyModelSource.Credentials" /> | |
| </div> | |
| <button type="submit" class="btn btn-primary">Submit</button> | |
| <SmartPasteButton DefaultIcon /> | |
| </EditForm> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment