@using BTCPayServer.Services @using BTCPayServer.Services.Mails @using Microsoft.AspNetCore.Mvc.TagHelpers @model ForgotPasswordViewModel @inject SettingsRepository SettingsRepository @{ var isEmailConfigured = (await SettingsRepository.GetSettingAsync())?.IsComplete() is true; ViewData["Title"] = isEmailConfigured ? "Forgot your password?" : "Email Server Configuration Required"; Layout = "_LayoutSignedOut"; } @if (isEmailConfigured) {

We all forget passwords sometimes. Just provide email address tied to your account, and we'll start the process of helping you recover your account.

@if (!ViewContext.ModelState.IsValid) {
}
} else {

Email password reset functionality is not configured for this server. Please contact the server administrator to assist with account recovery.

If you are the administrator, please follow these steps to configure email password resets or reset your admin password through command line.

}

Log in