Add real name to profile form (#12)

This commit is contained in:
2021-02-07 16:37:47 -05:00
parent 1b2540e5d2
commit 8350d0bddf
6 changed files with 26 additions and 4 deletions

View File

@@ -11,6 +11,16 @@
<Loading OnLoad=@SetUpProfile Message=@(new MarkupString("Loading Your Profile&hellip;"))>
<EditForm Model=@ProfileForm OnValidSubmit=@SaveProfile>
<DataAnnotationsValidator />
<div class="form-row">
<div class="col col-xs-12 col-sm-10 col-md-8 col-lg-6">
<div class="form-group">
<label for="realName" class="jjj-label">Real Name</label>
<InputText id="realName" @bind-Value=@ProfileForm.RealName class="form-control"
placeholder="Leave blank to use your NAS display name" />
<ValidationMessage For=@(() => ProfileForm.RealName) />
</div>
</div>
</div>
<div class="form-row">
<div class="col">
<div class="form-check">

View File

@@ -48,6 +48,7 @@ namespace JobsJobsJobs.Client.Pages.Citizen
ServerApi.SetJwt(http, state);
var continentTask = state.GetContinents(http);
var profileTask = ServerApi.RetrieveProfile(http, state);
//var citizenTask = ServerApi.RetrieveOne<Citizen>(http,)
await Task.WhenAll(continentTask, profileTask);