2018-01-31 18:52:12 +01:00
|
|
|
<form #form (ngSubmit)="submit()" [appApiAction]="formPromise">
|
|
|
|
<div class="content">
|
|
|
|
<div class="inner-content" *ngIf="cipher">
|
|
|
|
<div class="box">
|
|
|
|
<div class="box-header">
|
|
|
|
{{title}}
|
2018-01-25 22:15:47 +01:00
|
|
|
</div>
|
2018-01-31 18:52:12 +01:00
|
|
|
<div class="box-content">
|
|
|
|
<div class="box-content-row" *ngIf="!editMode" appBoxRow>
|
|
|
|
<label for="type">{{'type' | i18n}}</label>
|
|
|
|
<select id="type" name="Type" [(ngModel)]="cipher.type">
|
|
|
|
<option *ngFor="let o of typeOptions" [ngValue]="o.value">{{o.name}}</option>
|
|
|
|
</select>
|
2018-01-24 23:41:57 +01:00
|
|
|
</div>
|
2018-01-30 20:33:06 +01:00
|
|
|
<div class="box-content-row" appBoxRow>
|
2018-01-31 18:52:12 +01:00
|
|
|
<label for="name">{{'name' | i18n}}</label>
|
|
|
|
<input id="name" type="text" name="Name" [(ngModel)]="cipher.name" [appAutofocus]="!editMode">
|
2018-01-24 23:41:57 +01:00
|
|
|
</div>
|
2018-01-31 18:52:12 +01:00
|
|
|
<!-- Login -->
|
|
|
|
<div *ngIf="cipher.type === cipherType.Login">
|
|
|
|
<div class="box-content-row" appBoxRow>
|
|
|
|
<label for="loginUsername">{{'username' | i18n}}</label>
|
|
|
|
<input id="loginUsername" type="text" name="Login.Username"
|
|
|
|
[(ngModel)]="cipher.login.username">
|
|
|
|
</div>
|
|
|
|
<div class="box-content-row box-content-row-flex" appBoxRow>
|
|
|
|
<div class="row-main">
|
|
|
|
<label for="loginPassword">{{'password' | i18n}}</label>
|
|
|
|
<input id="loginPassword" class="monospaced"
|
|
|
|
type="{{showPassword ? 'text' : 'password'}}" name="Login.Password"
|
|
|
|
[(ngModel)]="cipher.login.password">
|
|
|
|
</div>
|
|
|
|
<div class="action-buttons">
|
2018-02-28 17:55:00 +01:00
|
|
|
<button type="button" #checkPasswordBtn class="row-btn btn" appBlurClick
|
|
|
|
title="{{'checkPassword' | i18n}}" (click)="checkPassword()"
|
|
|
|
[appApiAction]="checkPasswordPromise" [disabled]="checkPasswordBtn.loading">
|
|
|
|
<i class="fa fa-lg fa-check-circle" [hidden]="checkPasswordBtn.loading"></i>
|
|
|
|
<i class="fa fa-lg fa-spinner fa-spin" [hidden]="!checkPasswordBtn.loading"></i>
|
|
|
|
</button>
|
2018-01-31 18:52:12 +01:00
|
|
|
<a class="row-btn" href="#" appStopClick appBlurClick
|
|
|
|
title="{{'toggleVisibility' | i18n}}" (click)="togglePassword()">
|
|
|
|
<i class="fa fa-lg"
|
|
|
|
[ngClass]="{'fa-eye': !showPassword, 'fa-eye-slash': showPassword}"></i>
|
|
|
|
</a>
|
|
|
|
<a class="row-btn" href="#" appStopClick appBlurClick
|
|
|
|
title="{{'generatePassword' | i18n}}" (click)="generatePassword()">
|
|
|
|
<i class="fa fa-lg fa-refresh"></i>
|
|
|
|
</a>
|
|
|
|
</div>
|
2018-01-29 23:11:31 +01:00
|
|
|
</div>
|
2018-03-02 05:45:12 +01:00
|
|
|
<div class="box-content-row" appBoxRow>
|
|
|
|
<label for="loginTotp">{{'authenticatorKeyTotp' | i18n}}</label>
|
|
|
|
<input id="loginTotp" type="text" name="Login.Totp" class="monospaced"
|
|
|
|
[(ngModel)]="cipher.login.totp">
|
|
|
|
</div>
|
2018-01-25 22:15:47 +01:00
|
|
|
</div>
|
2018-01-31 18:52:12 +01:00
|
|
|
<!-- Card -->
|
|
|
|
<div *ngIf="cipher.type === cipherType.Card">
|
|
|
|
<div class="box-content-row" appBoxRow>
|
|
|
|
<label for="cardCardholderName">{{'cardholderName' | i18n}}</label>
|
|
|
|
<input id="cardCardholderName" type="text" name="Card.CardCardholderName"
|
|
|
|
[(ngModel)]="cipher.card.cardholderName">
|
|
|
|
</div>
|
|
|
|
<div class="box-content-row" appBoxRow>
|
|
|
|
<label for="cardNumber">{{'number' | i18n}}</label>
|
|
|
|
<input id="cardNumber" type="text" name="Card.Number" [(ngModel)]="cipher.card.number">
|
|
|
|
</div>
|
|
|
|
<div class="box-content-row" appBoxRow>
|
|
|
|
<label for="cardBrand">{{'brand' | i18n}}</label>
|
|
|
|
<select id="cardBrand" name="Card.Brand" [(ngModel)]="cipher.card.brand">
|
|
|
|
<option *ngFor="let o of cardBrandOptions" [ngValue]="o.value">{{o.name}}</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
<div class="box-content-row" appBoxRow>
|
|
|
|
<label for="cardExpMonth">{{'expirationMonth' | i18n}}</label>
|
|
|
|
<select id="cardExpMonth" name="Card.ExpMonth" [(ngModel)]="cipher.card.expMonth">
|
|
|
|
<option *ngFor="let o of cardExpMonthOptions" [ngValue]="o.value">{{o.name}}</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
<div class="box-content-row" appBoxRow>
|
|
|
|
<label for="cardExpYear">{{'expirationYear' | i18n}}</label>
|
|
|
|
<input id="cardExpYear" type="text" name="Card.ExpYear" [(ngModel)]="cipher.card.expYear"
|
|
|
|
placeholder="{{'ex' | i18n}} 2019">
|
|
|
|
</div>
|
2018-06-18 23:29:45 +02:00
|
|
|
<div class="box-content-row box-content-row-flex" appBoxRow>
|
|
|
|
<div class="row-main">
|
|
|
|
<label for="cardCode">{{'securityCode' | i18n}}</label>
|
|
|
|
<input id="cardCode" class="monospaced"
|
|
|
|
type="{{showCardCode ? 'text' : 'password'}}" name="Card.Code"
|
|
|
|
[(ngModel)]="cipher.card.code">
|
|
|
|
</div>
|
|
|
|
<div class="action-buttons">
|
|
|
|
<a class="row-btn" href="#" appStopClick appBlurClick
|
|
|
|
title="{{'toggleVisibility' | i18n}}" (click)="toggleCardCode()">
|
|
|
|
<i class="fa fa-lg"
|
|
|
|
[ngClass]="{'fa-eye': !showCardCode, 'fa-eye-slash': showCardCode}"></i>
|
|
|
|
</a>
|
|
|
|
</div>
|
2018-01-31 18:52:12 +01:00
|
|
|
</div>
|
2018-01-25 22:15:47 +01:00
|
|
|
</div>
|
2018-01-31 18:52:12 +01:00
|
|
|
<!-- Identity -->
|
|
|
|
<div *ngIf="cipher.type === cipherType.Identity">
|
|
|
|
<div class="box-content-row" appBoxRow>
|
|
|
|
<label for="idTitle">{{'title' | i18n}}</label>
|
|
|
|
<select id="idTitle" name="Identity.Title" [(ngModel)]="cipher.identity.title">
|
|
|
|
<option *ngFor="let o of identityTitleOptions" [ngValue]="o.value">{{o.name}}</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
<div class="box-content-row" appBoxRow>
|
|
|
|
<label for="idFirstName">{{'firstName' | i18n}}</label>
|
|
|
|
<input id="idFirstName" type="text" name="Identity.FirstName"
|
|
|
|
[(ngModel)]="cipher.identity.firstName">
|
|
|
|
</div>
|
|
|
|
<div class="box-content-row" appBoxRow>
|
|
|
|
<label for="idMiddleName">{{'middleName' | i18n}}</label>
|
|
|
|
<input id="idMiddleName" type="text" name="Identity.MiddleName"
|
|
|
|
[(ngModel)]="cipher.identity.middleName">
|
|
|
|
</div>
|
|
|
|
<div class="box-content-row" appBoxRow>
|
|
|
|
<label for="idLastName">{{'lastName' | i18n}}</label>
|
|
|
|
<input id="idLastName" type="text" name="Identity.LastName"
|
|
|
|
[(ngModel)]="cipher.identity.lastName">
|
|
|
|
</div>
|
|
|
|
<div class="box-content-row" appBoxRow>
|
|
|
|
<label for="idUsername">{{'username' | i18n}}</label>
|
|
|
|
<input id="idUsername" type="text" name="Identity.Username"
|
|
|
|
[(ngModel)]="cipher.identity.username">
|
|
|
|
</div>
|
|
|
|
<div class="box-content-row" appBoxRow>
|
|
|
|
<label for="idCompany">{{'company' | i18n}}</label>
|
|
|
|
<input id="idCompany" type="text" name="Identity.Company"
|
|
|
|
[(ngModel)]="cipher.identity.company">
|
|
|
|
</div>
|
|
|
|
<div class="box-content-row" appBoxRow>
|
|
|
|
<label for="idSsn">{{'ssn' | i18n}}</label>
|
|
|
|
<input id="idSsn" type="text" name="Identity.SSN" [(ngModel)]="cipher.identity.ssn">
|
|
|
|
</div>
|
|
|
|
<div class="box-content-row" appBoxRow>
|
|
|
|
<label for="idPassportNumber">{{'passportNumber' | i18n}}</label>
|
|
|
|
<input id="idPassportNumber" type="text" name="Identity.PassportNumber"
|
|
|
|
[(ngModel)]="cipher.identity.passportNumber">
|
|
|
|
</div>
|
|
|
|
<div class="box-content-row" appBoxRow>
|
|
|
|
<label for="idLicenseNumber">{{'licenseNumber' | i18n}}</label>
|
|
|
|
<input id="idLicenseNumber" type="text" name="Identity.LicenseNumber"
|
|
|
|
[(ngModel)]="cipher.identity.licenseNumber">
|
|
|
|
</div>
|
|
|
|
<div class="box-content-row" appBoxRow>
|
|
|
|
<label for="idEmail">{{'email' | i18n}}</label>
|
|
|
|
<input id="idEmail" type="text" name="Identity.Email" [(ngModel)]="cipher.identity.email">
|
|
|
|
</div>
|
|
|
|
<div class="box-content-row" appBoxRow>
|
|
|
|
<label for="idPhone">{{'phone' | i18n}}</label>
|
|
|
|
<input id="idPhone" type="text" name="Identity.Phone" [(ngModel)]="cipher.identity.phone">
|
|
|
|
</div>
|
|
|
|
<div class="box-content-row" appBoxRow>
|
|
|
|
<label for="idAddress1">{{'address1' | i18n}}</label>
|
|
|
|
<input id="idAddress1" type="text" name="Identity.Address1"
|
|
|
|
[(ngModel)]="cipher.identity.address1">
|
|
|
|
</div>
|
|
|
|
<div class="box-content-row" appBoxRow>
|
|
|
|
<label for="idAddress2">{{'address2' | i18n}}</label>
|
|
|
|
<input id="idAddress2" type="text" name="Identity.Address2"
|
|
|
|
[(ngModel)]="cipher.identity.address2">
|
|
|
|
</div>
|
|
|
|
<div class="box-content-row" appBoxRow>
|
|
|
|
<label for="idAddress3">{{'address3' | i18n}}</label>
|
|
|
|
<input id="idAddress3" type="text" name="Identity.Address3"
|
|
|
|
[(ngModel)]="cipher.identity.address3">
|
|
|
|
</div>
|
|
|
|
<div class="box-content-row" appBoxRow>
|
|
|
|
<label for="idCity">{{'cityTown' | i18n}}</label>
|
|
|
|
<input id="idCity" type="text" name="Identity.City" [(ngModel)]="cipher.identity.city">
|
|
|
|
</div>
|
|
|
|
<div class="box-content-row" appBoxRow>
|
|
|
|
<label for="idState">{{'stateProvince' | i18n}}</label>
|
|
|
|
<input id="idState" type="text" name="Identity.State" [(ngModel)]="cipher.identity.state">
|
|
|
|
</div>
|
|
|
|
<div class="box-content-row" appBoxRow>
|
|
|
|
<label for="idPostalCode">{{'zipPostalCode' | i18n}}</label>
|
|
|
|
<input id="idPostalCode" type="text" name="Identity.PostalCode"
|
|
|
|
[(ngModel)]="cipher.identity.postalCode">
|
|
|
|
</div>
|
|
|
|
<div class="box-content-row" appBoxRow>
|
|
|
|
<label for="idCountry">{{'country' | i18n}}</label>
|
|
|
|
<input id="idCountry" type="text" name="Identity.Country"
|
|
|
|
[(ngModel)]="cipher.identity.country">
|
|
|
|
</div>
|
2018-01-25 22:15:47 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-01-31 18:52:12 +01:00
|
|
|
</div>
|
2018-03-02 05:45:12 +01:00
|
|
|
<div class="box" *ngIf="cipher.type === cipherType.Login">
|
|
|
|
<div class="box-content">
|
|
|
|
<ng-container *ngIf="cipher.login.hasUris">
|
|
|
|
<div class="box-content-row box-content-row-multi" appBoxRow
|
|
|
|
*ngFor="let u of cipher.login.uris; let i = index">
|
|
|
|
<a href="#" appStopClick (click)="removeUri(u)" title="{{'remove' | i18n}}">
|
|
|
|
<i class="fa fa-minus-circle fa-lg"></i>
|
|
|
|
</a>
|
|
|
|
<div class="row-main">
|
|
|
|
<label for="loginUri{{i}}">{{'uriPosition' | i18n : (i + 1)}}</label>
|
|
|
|
<input id="loginUri{{i}}" type="text" name="Login.Uris[{{i}}].Uri" [(ngModel)]="u.uri"
|
|
|
|
placeholder="{{'ex' | i18n}} https://google.com">
|
|
|
|
<label for="loginUriMatch{{i}}" class="sr-only">
|
2018-03-12 17:28:41 +01:00
|
|
|
{{'matchDetection' | i18n}} {{(i + 1)}}
|
2018-03-02 05:45:12 +01:00
|
|
|
</label>
|
2018-03-02 14:15:55 +01:00
|
|
|
<select id="loginUriMatch{{i}}" name="Login.Uris[{{i}}].Match" [(ngModel)]="u.match"
|
2018-03-04 04:55:33 +01:00
|
|
|
[hidden]="u.showOptions === false || (u.showOptions == null && u.match == null)"
|
|
|
|
(change)="loginUriMatchChanged(u)">
|
2018-03-02 05:45:12 +01:00
|
|
|
<option *ngFor="let o of uriMatchOptions" [ngValue]="o.value">{{o.name}}</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
2018-03-02 14:15:55 +01:00
|
|
|
<div class="action-buttons">
|
|
|
|
<a class="row-btn" href="#" appStopClick appBlurClick
|
|
|
|
title="{{'toggleOptions' | i18n}}" (click)="toggleUriOptions(u)">
|
|
|
|
<i class="fa fa-lg fa-cog"></i>
|
|
|
|
</a>
|
|
|
|
</div>
|
2018-03-02 05:45:12 +01:00
|
|
|
</div>
|
|
|
|
</ng-container>
|
|
|
|
<a href="#" appStopClick appBlurClick (click)="addUri()" class="box-content-row">
|
|
|
|
<i class="fa fa-plus-circle fa-fw fa-lg"></i> {{'newUri' | i18n}}
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-01-31 18:52:12 +01:00
|
|
|
<div class="box">
|
|
|
|
<div class="box-content">
|
2018-01-30 20:33:06 +01:00
|
|
|
<div class="box-content-row" appBoxRow>
|
2018-01-31 18:52:12 +01:00
|
|
|
<label for="folder">{{'folder' | i18n}}</label>
|
|
|
|
<select id="folder" name="FolderId" [(ngModel)]="cipher.folderId">
|
|
|
|
<option *ngFor="let f of folders" [ngValue]="f.id">{{f.name}}</option>
|
|
|
|
</select>
|
2018-01-25 22:15:47 +01:00
|
|
|
</div>
|
2018-01-31 18:52:12 +01:00
|
|
|
<div class="box-content-row box-content-row-checkbox" appBoxRow>
|
|
|
|
<label for="favorite">{{'favorite' | i18n}}</label>
|
|
|
|
<input id="favorite" type="checkbox" name="Favorite" [(ngModel)]="cipher.favorite">
|
2018-01-24 23:41:57 +01:00
|
|
|
</div>
|
2018-02-01 03:40:02 +01:00
|
|
|
<a class="box-content-row box-content-row-flex text-default" href="#" appStopClick appBlurClick
|
2018-01-31 18:52:12 +01:00
|
|
|
(click)="attachments()" *ngIf="editMode">
|
|
|
|
<div class="row-main">{{'attachments' | i18n}}</div>
|
|
|
|
<i class="fa fa-chevron-right row-sub-icon"></i>
|
|
|
|
</a>
|
2018-10-23 21:50:21 +02:00
|
|
|
<a class="box-content-row box-content-row-flex text-default" href="#" appStopClick appBlurClick
|
|
|
|
(click)="editCollections()" *ngIf="editMode && cipher.organizationId">
|
|
|
|
<div class="row-main">{{'collections' | i18n}}</div>
|
|
|
|
<i class="fa fa-chevron-right row-sub-icon"></i>
|
|
|
|
</a>
|
2018-01-24 23:41:57 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-01-31 18:52:12 +01:00
|
|
|
<div class="box">
|
|
|
|
<div class="box-header">
|
|
|
|
<label for="notes">{{'notes' | i18n}}</label>
|
2018-01-26 04:54:09 +01:00
|
|
|
</div>
|
2018-01-31 18:52:12 +01:00
|
|
|
<div class="box-content">
|
|
|
|
<div class="box-content-row" appBoxRow>
|
|
|
|
<textarea id="notes" name="Notes" rows="6" [(ngModel)]="cipher.notes"></textarea>
|
|
|
|
</div>
|
2018-01-26 04:54:09 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-01-31 18:52:12 +01:00
|
|
|
<div class="box">
|
|
|
|
<div class="box-header">
|
|
|
|
{{'customFields' | i18n}}
|
2018-01-26 04:54:09 +01:00
|
|
|
</div>
|
2018-01-31 18:52:12 +01:00
|
|
|
<div class="box-content">
|
2018-03-02 05:45:12 +01:00
|
|
|
<ng-container *ngIf="cipher.hasFields">
|
|
|
|
<div class="box-content-row box-content-row-multi" appBoxRow
|
2018-01-31 18:52:12 +01:00
|
|
|
*ngFor="let f of cipher.fields; let i = index"
|
|
|
|
[ngClass]="{'box-content-row-checkbox': f.type === fieldType.Boolean}">
|
|
|
|
<a href="#" appStopClick (click)="removeField(f)" title="{{'remove' | i18n}}">
|
2018-03-02 05:45:12 +01:00
|
|
|
<i class="fa fa-minus-circle fa-lg"></i>
|
2018-01-29 23:24:48 +01:00
|
|
|
</a>
|
2018-01-31 18:52:12 +01:00
|
|
|
<label for="fieldName{{i}}" class="sr-only">{{'name' | i18n}}</label>
|
|
|
|
<label for="fieldValue{{i}}" class="sr-only">{{'value' | i18n}}</label>
|
|
|
|
<div class="row-main">
|
|
|
|
<input id="fieldName{{i}}" type="text" name="Field.Name{{i}}" [(ngModel)]="f.name"
|
|
|
|
class="row-label" placeholder="{{'name' | i18n}}">
|
|
|
|
<input id="fieldValue{{i}}" type="text" name="Field.Value{{i}}" [(ngModel)]="f.value"
|
|
|
|
*ngIf="f.type === fieldType.Text" placeholder="{{'value' | i18n}}">
|
|
|
|
<input id="fieldValue{{i}}" type="{{f.showValue ? 'text' : 'password'}}"
|
|
|
|
name="Field.Value{{i}}" [(ngModel)]="f.value" class="monospaced"
|
|
|
|
*ngIf="f.type === fieldType.Hidden" placeholder="{{'value' | i18n}}">
|
|
|
|
</div>
|
|
|
|
<input id="fieldValue{{i}}" name="Field.Value{{i}}" type="checkbox"
|
2018-06-06 20:35:56 +02:00
|
|
|
[(ngModel)]="f.value" *ngIf="f.type === fieldType.Boolean"
|
|
|
|
appTrueFalseValue trueValue="true" falseValue="false">
|
2018-01-31 18:52:12 +01:00
|
|
|
<div class="action-buttons" *ngIf="f.type === fieldType.Hidden">
|
|
|
|
<a class="row-btn" href="#" appStopClick appBlurClick
|
|
|
|
title="{{'toggleVisibility' | i18n}}" (click)="toggleFieldValue(f)">
|
|
|
|
<i class="fa fa-lg"
|
|
|
|
[ngClass]="{'fa-eye': !f.showValue, 'fa-eye-slash': f.showValue}"></i>
|
|
|
|
</a>
|
|
|
|
</div>
|
2018-01-29 23:24:48 +01:00
|
|
|
</div>
|
2018-03-02 05:45:12 +01:00
|
|
|
</ng-container>
|
2018-01-31 18:52:12 +01:00
|
|
|
<div class="box-content-row" appBoxRow>
|
|
|
|
<a href="#" appStopClick (click)="addField()">
|
|
|
|
<i class="fa fa-plus-circle fa-fw fa-lg"></i> {{'newCustomField' | i18n}}
|
|
|
|
</a>
|
|
|
|
<label for="addFieldType" class="sr-only">{{'type' | i18n}}</label>
|
|
|
|
<select id="addFieldType" name="AddFieldType" [(ngModel)]="addFieldType" class="field-type">
|
|
|
|
<option *ngFor="let o of addFieldTypeOptions" [ngValue]="o.value">{{o.name}}</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
2018-01-26 04:54:09 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-10-23 22:43:55 +02:00
|
|
|
<div class="box" *ngIf="!editMode && ownershipOptions && ownershipOptions.length > 1">
|
|
|
|
<div class="box-header">
|
|
|
|
{{'ownership' | i18n}}
|
|
|
|
</div>
|
|
|
|
<div class="box-content">
|
|
|
|
<div class="box-content-row" appBoxRow>
|
|
|
|
<label for="organizationId">{{'whoOwnsThisItem' | i18n}}</label>
|
|
|
|
<select id="organizationId" class="form-control" name="OrganizationId"
|
|
|
|
[(ngModel)]="cipher.organizationId" (change)="organizationChanged()">
|
|
|
|
<option *ngFor="let o of ownershipOptions" [ngValue]="o.value">{{o.name}}</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="box" *ngIf="!editMode && cipher.organizationId">
|
|
|
|
<div class="box-header">
|
|
|
|
{{'collections' | i18n}}
|
|
|
|
</div>
|
|
|
|
<div class="box-content" *ngIf="!collections || !collections.length">
|
|
|
|
{{'noCollectionsInList' | i18n}}
|
|
|
|
</div>
|
|
|
|
<div class="box-content" *ngIf="collections && collections.length">
|
|
|
|
<div class="box-content-row box-content-row-checkbox"
|
|
|
|
*ngFor="let c of collections; let i = index" appBoxRow>
|
|
|
|
<label for="collection_{{i}}">{{c.name}}</label>
|
|
|
|
<input id="collection_{{i}}" type="checkbox" [(ngModel)]="c.checked"
|
|
|
|
name="Collection[{{i}}].Checked">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-01-26 04:54:09 +01:00
|
|
|
</div>
|
2018-01-24 23:41:57 +01:00
|
|
|
</div>
|
2018-01-31 18:52:12 +01:00
|
|
|
<div class="footer">
|
|
|
|
<button appBlurClick type="submit" class="primary" title="{{'save' | i18n}}" [disabled]="form.loading">
|
|
|
|
<i class="fa fa-save fa-lg fa-fw" [hidden]="form.loading"></i>
|
|
|
|
<i class="fa fa-spinner fa-spin fa-lg fa-fw" [hidden]="!form.loading"></i>
|
|
|
|
</button>
|
|
|
|
<button appBlurClick type="button" (click)="cancel()" title="{{'cancel' | i18n}}">
|
|
|
|
{{'cancel' | i18n}}
|
2018-01-29 22:13:37 +01:00
|
|
|
</button>
|
2018-01-31 18:52:12 +01:00
|
|
|
<div class="right">
|
2018-10-23 21:50:21 +02:00
|
|
|
<button appBlurClick type="button" (click)="share()" title="{{'shareItem' | i18n}}"
|
|
|
|
*ngIf="editMode && cipher && !cipher.organizationId">
|
|
|
|
<i class="fa fa-share-alt fa-lg fa-fw"></i>
|
|
|
|
</button>
|
2018-01-31 18:52:12 +01:00
|
|
|
<button #deleteBtn appBlurClick type="button" (click)="delete()" class="danger"
|
|
|
|
title="{{'delete' | i18n}}" *ngIf="editMode" [disabled]="deleteBtn.loading"
|
|
|
|
[appApiAction]="deletePromise">
|
|
|
|
<i class="fa fa-trash-o fa-lg fa-fw" [hidden]="deleteBtn.loading"></i>
|
|
|
|
<i class="fa fa-spinner fa-spin fa-lg fa-fw" [hidden]="!deleteBtn.loading"></i>
|
|
|
|
</button>
|
|
|
|
</div>
|
2018-01-29 22:13:37 +01:00
|
|
|
</div>
|
2018-01-31 18:52:12 +01:00
|
|
|
</form>
|