1
0

Initial application generated by JHipster-5.8.2

This commit is contained in:
Michael Hoennig
2019-04-01 13:14:56 +02:00
commit e0b3d2a36d
404 changed files with 49698 additions and 0 deletions

View File

@ -0,0 +1,77 @@
<div>
<div class="row justify-content-center">
<div class="col-md-8">
<h2 jhiTranslate="password.title" [translateValues]="{username: account.login}" *ngIf="account">Password for [<b>{{account.login}}</b>]</h2>
<div class="alert alert-success" *ngIf="success" jhiTranslate="password.messages.success">
<strong>Password changed!</strong>
</div>
<div class="alert alert-danger" *ngIf="error" jhiTranslate="password.messages.error">
<strong>An error has occurred!</strong> The password could not be changed.
</div>
<div class="alert alert-danger" *ngIf="doNotMatch" jhiTranslate="global.messages.error.dontmatch">
The password and its confirmation do not match!
</div>
<form name="form" role="form" (ngSubmit)="changePassword()" #passwordForm="ngForm">
<div class="form-group">
<label class="form-control-label" for="currentPassword" jhiTranslate="global.form.currentpassword">Current password</label>
<input type="password" class="form-control" id="currentPassword" name="currentPassword" #currentPasswordInput="ngModel"
placeholder="{{'global.form.currentpassword.placeholder' | translate}}"
[(ngModel)]="currentPassword" required>
<div *ngIf="currentPasswordInput.dirty && currentPasswordInput.invalid">
<small class="form-text text-danger"
*ngIf="currentPasswordInput.errors.required" jhiTranslate="global.messages.validate.newpassword.required">
Your password is required.
</small>
</div>
</div>
<div class="form-group">
<label class="form-control-label" for="newPassword" jhiTranslate="global.form.newpassword">New password</label>
<input type="password" class="form-control" id="newPassword" name="newPassword" #newPasswordInput="ngModel"
placeholder="{{'global.form.newpassword.placeholder' | translate}}"
[(ngModel)]="newPassword" minlength=4 maxlength=50 required>
<div *ngIf="newPasswordInput.dirty && newPasswordInput.invalid">
<small class="form-text text-danger"
*ngIf="newPasswordInput.errors.required" jhiTranslate="global.messages.validate.newpassword.required">
Your password is required.
</small>
<small class="form-text text-danger"
*ngIf="newPasswordInput.errors.minlength" jhiTranslate="global.messages.validate.newpassword.minlength">
Your password is required to be at least 4 characters.
</small>
<small class="form-text text-danger"
*ngIf="newPasswordInput.errors.maxlength" jhiTranslate="global.messages.validate.newpassword.maxlength">
Your password cannot be longer than 50 characters.
</small>
</div>
<jhi-password-strength-bar [passwordToCheck]="newPassword"></jhi-password-strength-bar>
</div>
<div class="form-group">
<label class="form-control-label" for="confirmPassword" jhiTranslate="global.form.confirmpassword">New password confirmation</label>
<input type="password" class="form-control" id="confirmPassword" name="confirmPassword" #confirmPasswordInput="ngModel"
placeholder="{{'global.form.confirmpassword.placeholder' | translate}}"
[(ngModel)]="confirmPassword" minlength=4 maxlength=50 required>
<div *ngIf="confirmPasswordInput.dirty && confirmPasswordInput.invalid">
<small class="form-text text-danger"
*ngIf="confirmPasswordInput.errors.required" jhiTranslate="global.messages.validate.confirmpassword.required">
Your confirmation password is required.
</small>
<small class="form-text text-danger"
*ngIf="confirmPasswordInput.errors.minlength" jhiTranslate="global.messages.validate.confirmpassword.minlength">
Your confirmation password is required to be at least 4 characters.
</small>
<small class="form-text text-danger"
*ngIf="confirmPasswordInput.errors.maxlength" jhiTranslate="global.messages.validate.confirmpassword.maxlength">
Your confirmation password cannot be longer than 50 characters.
</small>
</div>
</div>
<button type="submit" [disabled]="passwordForm.form.invalid" class="btn btn-primary" jhiTranslate="password.form.button">Save</button>
</form>
</div>
</div>
</div>