community.hbs

 1{{#> layout }}
 2
 3<div class="max-w-screen-lg font-thin mx-auto p-20">
 4    <h1 class="font-display font-extralight mb-10">We’re building a community of passionate developers &amp; advocates.</h1>
 5    <p class="mt-5 leading-7">Be the first to join a community of builders that want to make the future.</p>
 6    <form action="" class="mt-10">
 7        <ul>
 8            <li class="mt-5 text-lg flex flex-row">
 9                <input class="w-8 mr-5" type="checkbox" id="form-releases" name="releases" checked>
10                <div class="flex-1">
11                    <label for="releases">I want to try Zed when it is available</label>
12                    <p class="text-sm text-gray-400 mt-1 leading-6">Get updates on beta releases, and when Zed launches.</p>
13                </div>
14            </li>
15            <li class="mt-5 text-lg flex flex-row">
16                <input class="w-8 mr-5" type="checkbox" id="form-follow" name="follow">
17                <div class="flex-1">
18                    <label for="follow">I’m interested in following Zed's development</label>
19                    <p class="text-sm text-gray-400 mt-1 leading-6">Receive occasional email updates on the development of Zed and it's tech</p>
20                </div>
21            </li>
22            <li class="mt-5 text-lg flex flex-row">
23                <input class="w-8 mr-5" type="checkbox" id="form-community" name="community">
24                <div class="flex-1">
25                   <label for="community">I want to join the Zed Universe community</label>
26                    <p class="text-sm text-gray-400 mt-1 leading-6">Join the waitlist for our alpha tester community to get early access to releases and contribute to Zed's development through testing &amp; feedback.</p>
27                </div>
28            </li>
29        </ul>
30        <input class="block border bg-transparent border-white mt-10 p-5 text-lg w-2/3" type="text" id="form-email" name="email" required minlength="4" placeholder="Your email">
31        <button href="/story" class="block underline mt-10 text-lg">Join the waitlist.</button>
32    </form>
33
34    <p class="text-sm text-gray-500 mt-20 leading-7">We'll never spam your email &mdash; You can expect an email every 1 to 3 months from us if you sign up for updates, and occasional emails about public testing releases.</p>
35</div>
36
37{{/layout}}