Clean up <br> tags from homepage and join

This commit is contained in:
Anthony Wang 2022-03-23 18:40:50 -05:00
parent 7a1731a743
commit 57278cb8a1
Signed by: a
GPG key ID: BC96B00AEC5F2D76
3 changed files with 18 additions and 44 deletions

View file

@ -13,15 +13,12 @@
<source srcset="/logo.png" type="image/png">
<img src="/logo.png" alt="exozyme" height="360" width="360">
</picture>
<br>
<h2>The exozyme project</h2>
<br>
<div style="font-size:48px;">🔓 🚀 🛡️</div>
<br>
<br>
The <b>libre</b>, <b>high-performance</b>, <b>privacy-respecting</b> cloud!
<br>
<br>
<p style="text-align:center;">
The <b>libre</b>, <b>high-performance</b>, <b>privacy-respecting</b> cloud!
</p>
<pre><a href="about">About</a> <a href="quickstart">Quickstart</a> <a href="explore">Explore</a> <a href="fuqs">FUQs</a></pre>
</body>
</html>

View file

@ -7,54 +7,24 @@
<link rel="icon" href="/logo.png" type="image/png">
</head>
<body>
<br>
<picture>
<source srcset="/logo.avif" type="image/avif">
<source srcset="/logo.webp" type="image/webp">
<source srcset="/logo.png" type="image/png">
<img src="/logo.png" alt="exozyme" height="360" width="360">
</picture>
<br>
<h2>Join exozyme!</h2>
<p>
Welcome! Please use only lowercase letters and numbers for your username. After you have an account, <a href="https://exozy.me/about/">learn more about exozyme</a> or try our <a href="https://exozy.me/quickstart/">quickstart guide</a>.
</p>
<form method="post" enctype="multipart/form-data" style="text-align:right;margin:auto;width:420px;">
<label>
Secret code
<input type="text" name="code">
</label>
<br>
<label>
First name
<input type="text" name="firstname">
</label>
<br>
<label>
Last name
<input type="text" name="lastname">
</label>
<br>
<label>
Email
<input type="text" name="email">
</label>
<br>
<label>
Username
<input type="text" name="username">
</label>
<br>
<label>
<b>Strong</b> password
<input type="password" name="password">
</label>
<br>
<label>
Confirm password
<input type="password" name="confirmpassword">
</label>
<br>
<form method="post" enctype="multipart/form-data">
<input type="text" placeholder="Secret code" name="code">
<input type="text" placeholder="First name" name="firstname">
<input type="text" placeholder="Last name" name="lastname">
<input type="text" placeholder="Email" name="email">
<input type="text" placeholder="Username" name="username">
<input type="password" placeholder="Strong password" name="password">
<input type="password" placeholder="Confirm password" name="confirmpassword">
<input type="submit" value="Join!" style="font-family:monospace;" name="submit">
</form>
<script src="script.js"></script>

View file

@ -35,3 +35,10 @@ p {
pre {
font-family: DejaVuSansMono;
}
input {
display: block;
margin: auto;
margin-top: 1em;
margin-bottom: 1em;
}