@page "/citizen/dashboard" @inject HttpClient http @inject AppState state

Welcome, @state.User!.Name!

@if (RetrievingData) {

Retrieving your employment profile...

} else { @if (Profile != null) {

Your employment profile was last updated . Your profile currently lists @Profile.Skills.Length skill@(Profile.Skills.Length != 1 ? "s" : "").

View Your Employment Profile

} else {

You do not have an employment profile established; click “Profile”* in the menu to get started!

}

There @(ProfileCount == 1 ? "is" : "are") @(ProfileCount == 0 ? "no" : ProfileCount) employment profile@(ProfileCount != 1 ? "s" : "") from citizens of Gitmo Nation. @if (ProfileCount > 0) { Take a look around and see if you can help them find work! (coming soon) }

}