Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 | 3x | <div class="modal-header"> <h4 i18n="form title|Example: Create Pool@@formTitle" class="modal-title pull-left">{{ action | titlecase }} {{ resource | upperFirst }}</h4> <button type="button" class="close pull-right" aria-label="Close" (click)="bsModalRef.hide()"> <span aria-hidden="true">×</span> </button> </div> <form class="form-horizontal" #frm="ngForm" [formGroup]="formGroup" novalidate> <div class="modal-body"> <!-- Username --> <div class="form-group" [ngClass]="{'has-error': formGroup.showError('user', frm)}"> <label class="control-label col-sm-3" for="user"> <ng-container i18n>Username</ng-container> <span class="required" *ngIf="!viewing"> </span> </label> <div class="col-sm-9"> <input id="user" class="form-control" type="text" *ngIf="viewing" [readonly]="true" formControlName="user"> <select id="user" class="form-control" formControlName="user" *ngIf="!viewing" autofocus> <option i18n *ngIf="userCandidates !== null" [ngValue]="null">-- Select a username --</option> <option *ngFor="let userCandidate of userCandidates" [value]="userCandidate">{{ userCandidate }}</option> </select> <span class="help-block" *ngIf="formGroup.showError('user', frm, 'required')" i18n>This field is required.</span> </div> </div> <!-- Auto-generate key --> <div class="form-group" *ngIf="!viewing"> <div class="col-sm-offset-3 col-sm-9"> <div class="checkbox checkbox-primary"> <input id="generate_key" type="checkbox" formControlName="generate_key"> <label for="generate_key" i18n>Auto-generate key</label> </div> </div> </div> <!-- Access key --> <div class="form-group" [ngClass]="{'has-error': formGroup.showError('access_key', frm)}" *ngIf="!formGroup.getValue('generate_key')"> <label class="control-label col-sm-3" for="access_key"> <ng-container i18n>Access key</ng-container> <span class="required" *ngIf="!viewing"> </span> </label> <div class="col-sm-9"> <div class="input-group"> <input id="access_key" class="form-control" type="password" [readonly]="viewing" formControlName="access_key"> <span class="input-group-btn"> <button type="button" class="btn btn-default" cdPasswordButton="access_key"> </button> <button type="button" class="btn btn-default" cdCopy2ClipboardButton="access_key"> </button> </span> </div> <span class="help-block" *ngIf="formGroup.showError('access_key', frm, 'required')" i18n>This field is required.</span> </div> </div> <!-- Secret key --> <div class="form-group" [ngClass]="{'has-error': formGroup.showError('secret_key', frm)}" *ngIf="!formGroup.getValue('generate_key')"> <label class="control-label col-sm-3" for="secret_key"> <ng-container i18n>Secret key</ng-container> <span class="required" *ngIf="!viewing"> </span> </label> <div class="col-sm-9"> <div class="input-group"> <input id="secret_key" class="form-control" type="password" [readonly]="viewing" formControlName="secret_key"> <span class="input-group-btn"> <button type="button" class="btn btn-default" cdPasswordButton="secret_key"> </button> <button type="button" class="btn btn-default" cdCopy2ClipboardButton="secret_key"> </button> </span> </div> <span class="help-block" *ngIf="formGroup.showError('secret_key', frm, 'required')" i18n>This field is required.</span> </div> </div> </div> <div class="modal-footer"> <cd-submit-button *ngIf="!viewing" (submitAction)="onSubmit()" i18n="form action button|Example: Create Pool@@formActionButton" [form]="formGroup">{{ action | titlecase }} {{ resource | upperFirst }}</cd-submit-button> <cd-back-button [back]="bsModalRef.hide"></cd-back-button> </div> </form> |