mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 20:14:49 +00:00
* accordion works * cleanup * styling * more styling * App show change (#387) * show page change * no marketplace * app show changes * update marketplace list * icon * top left icon * toolbar * right size * out of toolbar * no service details * fix skeleton text and server metrics page * stuck * add session management * complete sessions feature * app show page * remove unnecessary icons * add cli to list of possible sessions * Modal global (#383) * modal checkpoint * global modal * black looks good now * black looks good now * not smaller Co-authored-by: Drew Ansbacher <drew.ansbacher@spiredigital.com> Co-authored-by: Drew Ansbacher <drew.ansbacher@spiredigital.com> Co-authored-by: Drew Ansbacher <drew.ansbacher@gmail.com> Co-authored-by: Drew Ansbacher <drew.ansbacher@spiredigital.com> Co-authored-by: Matt Hill <matthewonthemoon@gmail.com> Co-authored-by: Matt Hill <MattDHill@users.noreply.github.com>
30 lines
960 B
HTML
30 lines
960 B
HTML
<ion-header>
|
|
<ion-toolbar>
|
|
<ion-buttons slot="start">
|
|
<pwa-back-button></pwa-back-button>
|
|
</ion-buttons>
|
|
<ion-title>SSH Keys</ion-title>
|
|
<ion-buttons slot="end">
|
|
<ion-button (click)="presentModalAdd()">
|
|
<ion-icon slot="icon-only" name="add-outline"></ion-icon>
|
|
</ion-button>
|
|
</ion-buttons>
|
|
</ion-toolbar>
|
|
</ion-header>
|
|
|
|
<ion-content class="ion-padding-top">
|
|
<text-spinner *ngIf="loading" text="Loading Keys"></text-spinner>
|
|
|
|
<ion-item-group>
|
|
<ion-item-divider>Saved Keys</ion-item-divider>
|
|
<ion-item *ngFor="let ssh of sshKeys | keyvalue : asIsOrder">
|
|
<ion-label class="ion-text-wrap">
|
|
{{ ssh.value.alg }} {{ ssh.key }} {{ ssh.value.hostname }}
|
|
</ion-label>
|
|
<ion-button slot="end" fill="clear" (click)="presentAlertDelete(ssh.key)">
|
|
<ion-icon slot="icon-only" name="close-outline"></ion-icon>
|
|
</ion-button>
|
|
</ion-item>
|
|
</ion-item-group>
|
|
|
|
</ion-content> |