mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-28 02:18:50 +00:00
With the dependency bump in #7995, we introduced a visual regression that made all windows lose their styling:  The changelog to the v4 bump actually mentions some breaking changes and an automated upgrade tool but both the reviewer and the author of the PR missed that.
35 lines
1.2 KiB
HTML
35 lines
1.2 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="shortcut icon" href="data:image/x-icon;," type="image/x-icon" />
|
|
<link rel="stylesheet" href="output.css" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Welcome to Firezone</title>
|
|
<script type="module" src="./flowbite.min.js" defer></script>
|
|
<script type="module" src="welcome.ts" defer></script>
|
|
</head>
|
|
|
|
<body class="bg-neutral-100 text-neutral-900">
|
|
<div class="container mx-auto">
|
|
<div class="flex justify-center mt-8">
|
|
<h1 class="text-3xl font-bold">Welcome to Firezone.</h1>
|
|
</div>
|
|
<p class="mt-8 flex justify-center">Sign in below to get started.</p>
|
|
<img
|
|
src="logo.png"
|
|
alt="Firezone Logo"
|
|
class="mt-8 rounded-full w-48 h-48 mx-auto bg-white shadow-sm border-2 border-black"
|
|
/>
|
|
<div class="flex justify-center mt-8">
|
|
<button
|
|
class="text-white bg-accent-450 hover:bg-accent-700 font-medium rounded-sm text-lg w-full sm:w-auto px-5 py-2.5 text-center"
|
|
id="sign-in"
|
|
>
|
|
Sign in
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|