2017-03-23 18:28:42 +00:00
|
|
|
<div class="page-profile">
|
2016-11-08 18:20:34 -08:00
|
|
|
<div class="form-header">
|
|
|
|
<div class="title">About You</div>
|
2017-03-23 18:28:42 +00:00
|
|
|
<div class="tip"></div>
|
2016-11-08 18:20:34 -08:00
|
|
|
</div>
|
|
|
|
<div class="input-control">
|
|
|
|
<label>Firstname</label>
|
|
|
|
{{focus-input id="firstname" type="text" value=model.firstname class=(if hasFirstnameError 'error')}}
|
|
|
|
</div>
|
|
|
|
<div class="input-control">
|
|
|
|
<label>Lastname</label>
|
|
|
|
{{input id="lastname" type="text" value=model.lastname class=(if hasLastnameError 'error')}}
|
|
|
|
</div>
|
|
|
|
<div class="input-control">
|
|
|
|
<label>Email</label>
|
|
|
|
{{input id="email" type="text" value=model.email class=(if hasEmailError 'error')}}
|
|
|
|
</div>
|
2017-03-21 11:57:42 +00:00
|
|
|
{{#if isAuthProviderDocumize}}
|
|
|
|
<div class="input-control">
|
|
|
|
<label>Password</label>
|
2017-03-23 18:28:42 +00:00
|
|
|
<div class="tip">New password</div>
|
2017-03-21 11:57:42 +00:00
|
|
|
{{input id="password" type="password" value=password.password class=hasPasswordError}}
|
|
|
|
</div>
|
|
|
|
<div class="input-control">
|
|
|
|
<label>Confirm Password</label>
|
|
|
|
<div class="tip">Confirm your new password</div>
|
|
|
|
{{input id="confirmPassword" type="password" value=password.confirmation class=hasConfirmPasswordError}}
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
2016-11-08 18:20:34 -08:00
|
|
|
<div class="regular-button button-blue" {{ action 'save' }}>save</div>
|
2016-07-25 12:05:46 +02:00
|
|
|
</div>
|