@using BTCPayServer.Abstractions.Contracts @using BTCPayServer.Abstractions.Models @using Microsoft.AspNetCore.Mvc.TagHelpers @inject IFileService FileService @model IndexViewModel @{ ViewData.SetActivePage(ManageNavPages.Index, "Update your account"); var canUpload = await FileService.IsAvailable(); }
@if (!ViewContext.ModelState.IsValid) {
}
@if (Model.RequiresEmailConfirmation) { } else if (Model.EmailConfirmed) { confirmed }
@if (canUpload) {
@if (!string.IsNullOrEmpty(Model.ImageUrl)) { }
@if (!string.IsNullOrEmpty(Model.ImageUrl)) { Profile picture }
}

Delete Account

@section PageFootContent { }