@using BTCPayServer.TagHelpers @using Microsoft.AspNetCore.Mvc.TagHelpers @model BTCPayServer.Controllers.RegisterFromAdminViewModel @{ ViewData.SetActivePage(ServerNavPages.Users, "Create account"); var canSendEmail = ViewData["CanSendEmail"] is true; }
@if (!ViewContext.ModelState.IsValid) {
}
@if (ViewData["AllowIsAdmin"] is true) {
} @if (ViewData["AllowRequestEmailConfirmation"] is true) {
}
@if (!canSendEmail) {
Your email server has not been configured. Please configure it first.
}
@section PageFootContent { }