mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 20:14:49 +00:00
39 lines
1.3 KiB
HTML
39 lines
1.3 KiB
HTML
<ion-header>
|
|
<ion-toolbar>
|
|
<ion-title>LAN Settings</ion-title>
|
|
<ion-buttons slot="start">
|
|
<pwa-back-button></pwa-back-button>
|
|
</ion-buttons>
|
|
</ion-toolbar>
|
|
</ion-header>
|
|
|
|
<ion-content class="ion-padding-top">
|
|
|
|
<ion-item-group>
|
|
<!-- about -->
|
|
<ion-item class="ion-padding-bottom">
|
|
<ion-label>
|
|
<h2>
|
|
Connecting to your Embassy over LAN is fast and a great fallback in case the Tor network is experiencing issues.
|
|
<a href="https://docs.start9.com/user-manual/general/lan-setup" target="_blank">View instructions</a>
|
|
</h2>
|
|
<ng-container *ngIf="lanDisabled">
|
|
<br />
|
|
<ion-text color="warning" [innerHtml]="lanDisabled"></ion-text>
|
|
</ng-container>
|
|
</ion-label>
|
|
</ion-item>
|
|
|
|
<ion-item button (click)="installCert()" [disabled]="lanDisabled">
|
|
<ion-icon slot="start" name="download-outline" size="large"></ion-icon>
|
|
<ion-label>
|
|
<h1>Download Root CA</h1>
|
|
<p>Download and trust your Embassy's Root Certificate Authority to establish a secure connection on the LAN.</p>
|
|
</ion-label>
|
|
</ion-item>
|
|
</ion-item-group>
|
|
|
|
<!-- hidden element for downloading cert -->
|
|
<a id="install-cert" href="/public/local.crt" download="Embassy Local CA.crt"></a>
|
|
|
|
</ion-content> |