This repository has been archived on 2024-01-05. You can view files and clone it, but cannot push or open issues or pull requests.
website/join/index.html

63 lines
1.8 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Join exozyme!</title>
<link rel="stylesheet" href="/style.css" type="text/css">
<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>
<input type="submit" value="Join!" style="font-family:monospace;" name="submit">
</form>
<script src="script.js"></script>
</body>
</html>