It should be called 'Wrong password'

This commit is contained in:
Johannes Zellner
2016-01-21 15:11:42 +01:00
parent 0895a2bdea
commit e014b7de81
3 changed files with 3 additions and 3 deletions

View File

@@ -15,7 +15,7 @@
<small ng-show="developerModeChangeForm.password.$error.required">A password is required</small>
<small ng-show="developerModeChangeForm.password.$error.minlength">The password is too short</small>
<small ng-show="developerModeChangeForm.password.$error.maxlength">The password is too long</small>
<small ng-show="developerModeChangeForm.password.$dirty && developerModeChange.error.password">Invalid pasword</small>
<small ng-show="developerModeChangeForm.password.$dirty && developerModeChange.error.password">Wrong password</small>
</div>
<input type="password" class="form-control" ng-model="developerModeChange.password" id="inputDeveloperModeChangePassword" name="password" ng-maxlength="30" ng-minlength="8" required autofocus>
</div>