@model UserViewModel
- Id
@Model.Id
- Premium
- @(Model.Premium ? "Yes" : "No")
- Premium Expires
- @(Model.PremiumExpirationDate?.ToString() ?? "-")
- Email Verified
- @(Model.EmailVerified ? "Yes" : "No")
@if(Model.ClaimedAccount.HasValue)
{
- Claimed Account
- @(Model.ClaimedAccount.Value ? "Yes" : "No")
}
- Using 2FA
- @(Model.TwoFactorEnabled ? "Yes" : "No")
- Items
- @Model.CipherCount
- Vault Modified
- @Model.AccountRevisionDate.ToString()
- Created
- @Model.CreationDate.ToString()
- Modified
- @Model.RevisionDate.ToString()
- Last Email Address Change
- @(Model.LastEmailChangeDate?.ToString() ?? "-")
- Last KDF Change
- @(Model.LastKdfChangeDate?.ToString() ?? "-")
- Last Key Rotation
- @(Model.LastKeyRotationDate?.ToString() ?? "-")
- Last Password Change
- @(Model.LastPasswordChangeDate?.ToString() ?? "-")