Files
start-os/frontend/projects/ui/src/app/pages/server-routes/lan/lan.page.html
Aiden McClelland 4a8f323be7 external rename (#2265)
* backend rename

* rename embassy and closes #2179

* update root ca name on disk

* update MOTD

* update readmes

* your server typo

* another tiny typo

* fix png name

* Update backend/src/net/wifi.rs

Co-authored-by: Lucy C <12953208+elvece@users.noreply.github.com>

* changes needed due to rebase

---------

Co-authored-by: Matt Hill <matthewonthemoon@gmail.com>
Co-authored-by: Matt Hill <MattDHill@users.noreply.github.com>
Co-authored-by: Lucy C <12953208+elvece@users.noreply.github.com>
2023-05-11 16:48:52 -06:00

44 lines
1.2 KiB
HTML

<ion-header>
<ion-toolbar>
<ion-title>Secure LAN</ion-title>
<ion-buttons slot="start">
<ion-back-button defaultHref="system"></ion-back-button>
</ion-buttons>
</ion-toolbar>
</ion-header>
<ion-content class="ion-padding-top with-widgets">
<ion-item-group>
<!-- about -->
<ion-item class="ion-padding-bottom">
<ion-label>
<h2>
For a secure local connection,
<a
href="https://docs.start9.com/latest/user-manual/connecting/connecting-lan"
target="_blank"
rel="noreferrer"
>
follow instructions
</a>
to download and trust your server's Root Certificate Authority
</h2>
</ion-label>
</ion-item>
<ion-item button (click)="installCert()" [disabled]="!(crtName$ | async)">
<ion-icon slot="start" name="download-outline" size="large"></ion-icon>
<ion-label>
<h1>Download Certificate</h1>
</ion-label>
</ion-item>
</ion-item-group>
<!-- hidden element for downloading cert -->
<a
id="install-cert"
href="/public/eos/local.crt"
[download]="crtName$ | async"
></a>
</ion-content>