/
qwiklly
/
arc-server
Обзор
Документация
Войти
/
qwiklly
/
arc-server
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
trunk
src/AppRemoteConfig.UI/Pages/Users/UserEditor.razor
37 строк
929 B
CLTanuki
chore: modules exploded
24 янв 2024, 18:53
24 янв 2024, 18:53
6b5ba70
Код
Авторство
О чём код?
@attribute [Authorize(Roles = "Admin, Superuser")] <div class="form-field"> <label>Имя пользователя:</label> <div> <InputText @bind-Value="User.UserName" /> <ValidationMessage For="@(() => User.UserName)" /> </div> </div> <div class="form-field"> <label>Имя:</label> <div> <InputText @bind-Value="User.FirstName" /> <ValidationMessage For="@(() => User.FirstName)" /> </div> </div> <div class="form-field"> <label>Фамилия:</label> <div> <InputText @bind-Value="User.LastName" /> <ValidationMessage For="@(() => User.LastName)" /> </div> </div> <div class="form-field"> <label>Отчетство:</label> <div> <InputText @bind-Value="User.Patronymic" /> <ValidationMessage For="@(() => User.Patronymic)" /> </div> </div> @code { [Parameter] public AppUserDto User { get; set; } }