mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-28 18:18:55 +00:00
Many of these commits are in #2757 too. This has changes like: - Local webserver PoC - API token is received from `firezone://` app link, saved in Windows cred manager, and reloaded on future runs - connlib GUI integration PoC - Placeholder for Export Logs feature (just need to actually write the zip file, and enable/disable the GUI buttons correctly) --------- Signed-off-by: Reactor Scram <ReactorScram@users.noreply.github.com> Co-authored-by: Jamil <jamilbk@users.noreply.github.com>
37 lines
816 B
HTML
Executable File
37 lines
816 B
HTML
Executable File
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="stylesheet" href="styles.css" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>About Firezone</title>
|
|
<script type="module" src="/main.js" defer></script>
|
|
<style>
|
|
.logo.vanilla:hover {
|
|
filter: drop-shadow(0 0 2em #ffe21c);
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<h1>About Firezone</h1>
|
|
|
|
<div class="row">
|
|
<a href="https://www.firezone.dev/?utm_source=windows-client" target="_blank">
|
|
firezone.dev
|
|
</a>
|
|
</a>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<a href="steam://browsemedia" target="_blank">
|
|
app link?
|
|
</a>
|
|
</a>
|
|
</div>
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|