|
|
|
|
@ -11,29 +11,39 @@
@@ -11,29 +11,39 @@
|
|
|
|
|
</div> |
|
|
|
|
<form role="form" name="profileForm" ng-submit="profileForm.$valid && save(model)" api-form="savePromise"> |
|
|
|
|
<div class="box-body"> |
|
|
|
|
<div class="callout callout-danger validation-errors" ng-show="profileForm.$errors"> |
|
|
|
|
<h4>Errors have occured</h4> |
|
|
|
|
<ul> |
|
|
|
|
<li ng-repeat="e in profileForm.$errors">{{e}}</li> |
|
|
|
|
</ul> |
|
|
|
|
</div> |
|
|
|
|
<div class="form-group" show-errors> |
|
|
|
|
<label for="name">Name</label> |
|
|
|
|
<input type="text" id="name" name="Name" ng-model="model.name" class="form-control" required api-field /> |
|
|
|
|
</div> |
|
|
|
|
<div class="form-group"> |
|
|
|
|
<label for="email">Email - <a href="javascript:void(0)" ng-click="changeEmail()">change</a></label> |
|
|
|
|
<input type="text" id="email" ng-model="model.email" class="form-control" readonly /> |
|
|
|
|
</div> |
|
|
|
|
<div class="form-group" show-errors> |
|
|
|
|
<label for="hint">Master Password Hint</label> |
|
|
|
|
<input type="text" id="hint" name="MasterPasswordHint" ng-model="model.masterPasswordHint" class="form-control" api-field /> |
|
|
|
|
</div> |
|
|
|
|
<div class="form-group" show-errors> |
|
|
|
|
<label for="culture">Language/Culture</label> |
|
|
|
|
<select id="culture" name="Culture" ng-model="model.culture" class="form-control" api-field> |
|
|
|
|
<option value="en-US">English (US)</option> |
|
|
|
|
</select> |
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="col-sm-9"> |
|
|
|
|
<div class="callout callout-danger validation-errors" ng-show="profileForm.$errors"> |
|
|
|
|
<h4>Errors have occured</h4> |
|
|
|
|
<ul> |
|
|
|
|
<li ng-repeat="e in profileForm.$errors">{{e}}</li> |
|
|
|
|
</ul> |
|
|
|
|
</div> |
|
|
|
|
<div class="form-group" show-errors> |
|
|
|
|
<label for="name">Name</label> |
|
|
|
|
<input type="text" id="name" name="Name" ng-model="model.name" class="form-control" required api-field /> |
|
|
|
|
</div> |
|
|
|
|
<div class="form-group"> |
|
|
|
|
<label for="email">Email - <a href="javascript:void(0)" ng-click="changeEmail()">change</a></label> |
|
|
|
|
<input type="text" id="email" ng-model="model.email" class="form-control" readonly /> |
|
|
|
|
</div> |
|
|
|
|
<div class="form-group" show-errors> |
|
|
|
|
<label for="hint">Master Password Hint</label> |
|
|
|
|
<input type="text" id="hint" name="MasterPasswordHint" ng-model="model.masterPasswordHint" class="form-control" api-field /> |
|
|
|
|
</div> |
|
|
|
|
<div class="form-group" show-errors> |
|
|
|
|
<label for="culture">Language/Culture</label> |
|
|
|
|
<select id="culture" name="Culture" ng-model="model.culture" class="form-control" api-field> |
|
|
|
|
<option value="en-US">English (US)</option> |
|
|
|
|
</select> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="col-sm-3 settings-photo"> |
|
|
|
|
<a href="http://www.gravatar.com/" target="_blank"> |
|
|
|
|
<img src="//www.gravatar.com/avatar/{{ main.userProfile.email | gravatar }}.jpg?s=150&d=mm" class="img-rounded img-responsive" alt="User Image"> |
|
|
|
|
</a> |
|
|
|
|
<a href="http://www.gravatar.com/" target="_blank" class="btn btn-link">Update Photo</a> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="box-footer"> |
|
|
|
|
|