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 146 147 | 2x | <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('uid', frm)}"> <label class="control-label col-sm-3" for="uid" i18n>Username</label> <div class="col-sm-9"> <input id="uid" class="form-control" type="text" formControlName="uid" [readonly]="true"> </div> </div> <!-- Subuser --> <div class="form-group" [ngClass]="{'has-error': formGroup.showError('subuid', frm)}"> <label class="control-label col-sm-3" for="subuid"> <ng-container i18n>Subuser</ng-container> <span class="required" *ngIf="!editing"> </span> </label> <div class="col-sm-9"> <input id="subuid" class="form-control" type="text" formControlName="subuid" [readonly]="editing" autofocus> <span class="help-block" *ngIf="formGroup.showError('subuid', frm, 'required')" i18n>This field is required.</span> <span class="help-block" *ngIf="formGroup.showError('subuid', frm, 'subuserIdExists')" i18n>The chosen subuser ID is already in use.</span> </div> </div> <!-- Permission --> <div class="form-group" [ngClass]="{'has-error': formGroup.showError('perm', frm)}"> <label class="control-label col-sm-3" for="perm"> <ng-container i18n>Permission</ng-container> <span class="required"></span> </label> <div class="col-sm-9"> <select id="perm" class="form-control" formControlName="perm"> <option i18n [ngValue]="null">-- Select a permission --</option> <option *ngFor="let perm of ['read', 'write']" [value]="perm"> {{ perm }} </option> <option i18n value="read-write">read, write</option> <option i18n value="full-control">full</option> </select> <span class="help-block" *ngIf="formGroup.showError('perm', frm, 'required')" i18n>This field is required.</span> </div> </div> <!-- Swift key --> <fieldset *ngIf="!editing"> <legend i18n>Swift key</legend> <!-- Auto-generate key --> <div class="form-group"> <div class="col-sm-offset-3 col-sm-9"> <div class="checkbox checkbox-primary"> <input id="generate_secret" type="checkbox" formControlName="generate_secret"> <label for="generate_secret" i18n>Auto-generate secret</label> </div> </div> </div> <!-- Secret key --> <div class="form-group" [ngClass]="{'has-error': formGroup.showError('secret_key', frm)}" *ngIf="!editing && !formGroup.getValue('generate_secret')"> <label class="control-label col-sm-3" for="secret_key"> <ng-container i18n>Secret key</ng-container> <span class="required"></span> </label> <div class="col-sm-9"> <div class="input-group"> <input id="secret_key" class="form-control" type="password" 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> </fieldset> </div> <div class="modal-footer"> <cd-submit-button (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> |