@model PerformerProfile
@{ ViewBag.Title = "Edit your avatar"; }
@{
var previewAvatarSrc = string.IsNullOrWhiteSpace(User?.Identity?.Name)
? Yavsc.Constants.DefaultAvatar
: $"{Yavsc.Constants.AvatarsPath}/{User.Identity.Name}.png";
}
@section header{
}
@section scripts{
}