Skip to content

Commit

Permalink
Updated required fields during registration phase.
Browse files Browse the repository at this point in the history
  • Loading branch information
vzickner committed Dec 23, 2015
1 parent 3f9212f commit a66a59a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions partials/register.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ <h1 class="text-center login-heading">{{ 'Welcome to come2help!' | translate }}<
<div ng-class="[ 'form-group', 'row', { 'has-error': ctrl.errors.surname}, { 'has-error': ctrl.errors.givenName}]">
<label for="surname" class="sr-only">{{ 'Name' | translate }}</label>
<div class="col-sm-6">
<input class="form-control input-lg" ng-model="ctrl.user.givenName" id="givenName" placeholder="{{ 'Givenname' | translate }}" value="" type="text">
<input class="form-control input-lg" ng-model="ctrl.user.givenName" id="givenName" placeholder="{{ 'Givenname' | translate }}" value="" type="text" required>
</div>
<div class="col-sm-6">
<input class="form-control input-lg" ng-model="ctrl.user.surname" name="surname" id="surname" placeholder="{{ 'Surname' | translate }}" value="" type="text">
<input class="form-control input-lg" ng-model="ctrl.user.surname" name="surname" id="surname" placeholder="{{ 'Surname' | translate }}" value="" type="text" required>
</div>
</div>
<div ng-class="[ 'form-group', { 'has-error': ctrl.errors.zipCode}]">
<label for="zipCode" class="sr-only">{{ 'Zip Code' | translate }}</label>
<input class="form-control" ng-model="ctrl.user.zipCode" name="city" id="zipCode" placeholder="{{ 'Zip Code' | translate }}" value="" type="text">
<input class="form-control" ng-model="ctrl.user.zipCode" name="city" id="zipCode" placeholder="{{ 'Zip Code' | translate }}" value="" type="text" required>
</div>
<div ng-class="[ 'form-group', { 'has-error': ctrl.errors.phone}]">
<label for="phone" class="sr-only">{{ 'Phone' | translate }}</label>
Expand Down

0 comments on commit a66a59a

Please sign in to comment.