Welcome to mirror list, hosted at ThFree Co, Russian Federation.

edit_credential.html « views « templates - github.com/nextcloud/passman.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9b11e37c7b22c004e6f9d6c9be56b1361703e353 (plain)
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
<div id="controls">
	<div class="actions creatable">
		<div class="breadcrumb">
			<div class="crumb svg ui-droppable" data-dir="/">
				<a ng-click="logout()"><i class="fa fa-home"></i></a>
			</div>
			<div class="crumb svg" data-dir="/Test">
				<a ng-click="cancel()">{{active_vault.name}}</a>
			</div>
			<div class="crumb svg last" data-dir="/Test">
				<a ng-if="storedCredential.credential_id">{{ 'edit.credential' | translate}}
					"{{storedCredential.label}}"</a>
				<a ng-if="!storedCredential.credential_id">{{ 'create.credential' | translate}}</a>
			</div>
		</div>
	</div>
</div>
<ul class="tab_header">
	<li ng-repeat="tab in tabs track by $index" class="tab"
		ng-class="{active:isActiveTab(tab)}"
		ng-click="onClickTab(tab)" use-theme color="'true'"
	>{{tab.title}}
		<div class="indicator"  use-theme negative="'true'"></div>
	</li>
</ul>

<div class="tab_container edit_credential" use-theme type="'border-top-color'">
	<div ng-include="currentTab.url"></div>
	<button ng-click="saveCredential()">{{ 'save' | translate}}</button>
	<button ng-click="cancel()">{{ 'cancel' | translate}}</button>
</div>