@using BTCPayServer.Abstractions.Models @model StoreUsersViewModel @{ Layout = "../Shared/_NavLayout.cshtml"; ViewData.SetActivePage(StoreNavPages.Users, "Store Users", Context.GetStoreData().Id); }

@ViewData["Title"]

Give other registered BTCPay Server users access to your store.
Guests will not be able to see or modify the store settings.

@if (!ViewContext.ModelState.IsValid) {
}
@foreach (var user in Model.Users) { }
Email Role Actions
@user.Email @user.Role Remove
@section PageFootContent { }