59 lines
1.6 KiB
HTML
59 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="{{ page.lang | default: site.lang | default: en }}">
|
||
{%- include head.html -%}
|
||
|
||
<!-- index.html -->
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>Caution Waitlist</title>
|
||
<link rel="stylesheet" href="styles.css">
|
||
<style>
|
||
html, body {
|
||
height: 100vh;
|
||
width: 100vw;
|
||
overflow-x: hidden;
|
||
overflow-y: auto;
|
||
}
|
||
</style>
|
||
</head>
|
||
|
||
<body>
|
||
<section class="logo-section center"></section>
|
||
<div class="logo">
|
||
<img src="/assets/base/caution-logo-triangle-black.svg" alt="Caution logo" style="height: clamp(3rem, 10vw, 4rem)">
|
||
</div>
|
||
<div class="heading center">
|
||
<h1>Join the waitlist</h1>
|
||
<p class="subtext center">
|
||
The first open source platform for encrypted data recovery and escrow. No trust required. Join the waitlist to be the first to try it.
|
||
</p>
|
||
</div>
|
||
</section>
|
||
|
||
|
||
<div class="info-block">
|
||
<span class="spaced-text">STAY TUNED</span>
|
||
<span class="spaced-text">FOR</span>
|
||
<span class="spaced-text">EARLY ACCESS</span><br>
|
||
NO SPAM – WE’LL ONLY EMAIL YOU ABOUT CAUTION
|
||
</div>
|
||
|
||
<div class="waitlist-form">
|
||
<form method="post" class="email-form">
|
||
<div class="input-wrapper">
|
||
<input type="email" name="email" placeholder="Enter your email" id="email" class="email-input" required>
|
||
<button type="submit" class="submit-btn" aria-label="Submit email">
|
||
<span class="arrow">→</span>
|
||
</button>
|
||
</div>
|
||
</form>
|
||
</div>
|
||
|
||
<div class="footer">
|
||
<p>Brought to you by the security engineers behind Distrust, BitGo, Unit410 and Turkney.</p>
|
||
</div>
|
||
|
||
</html>
|
||
|