Skip to content

Commit

Permalink
Added Ids to inputs so the label in umb-control-group gets linked
Browse files Browse the repository at this point in the history
  • Loading branch information
Sven Geusens authored and kjac committed Dec 19, 2019
1 parent fa2bbcc commit 57a58f9
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

<!-- we need to show the old pass field when the provider cannot retrieve the password -->
<umb-control-group alias="oldPassword" label="@user_oldPassword" ng-if="vm.showOldPass()" required="true">
<input type="password" name="oldPassword" ng-model="vm.passwordValues.oldPassword"
<input type="password" name="oldPassword" id="oldPassword" ng-model="vm.passwordValues.oldPassword"
class="input-block-level umb-textstring textstring"
required
val-server-field="oldPassword"
Expand All @@ -36,7 +36,7 @@
</umb-control-group>

<umb-control-group alias="password" label="@user_newPassword" ng-if="!vm.showReset" required="true">
<input type="password" name="password" ng-model="vm.passwordValues.newPassword"
<input type="password" name="password" id="password" ng-model="vm.passwordValues.newPassword"
class="input-block-level umb-textstring textstring"
required
val-server-field="password"
Expand All @@ -50,7 +50,7 @@
</umb-control-group>

<umb-control-group alias="confirmPassword" label="@user_confirmNewPassword" ng-if="!vm.showReset" required="true">
<input type="password" name="confirmPassword" ng-model="vm.passwordValues.confirm"
<input type="password" name="confirmPassword" id="confirmPassword" ng-model="vm.passwordValues.confirm"
class="input-block-level umb-textstring textstring"
val-compare="password"
no-dirty-check />
Expand Down

0 comments on commit 57a58f9

Please sign in to comment.