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.html

32 lines
1.5 KiB
HTML
Raw Normal View History

2021-11-22 20:48:46 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Join exozyme!</title>
2022-05-27 19:28:40 +00:00
<link rel="stylesheet" href="style.css" type="text/css">
<link rel="icon" href="img/logo.png" type="image/png">
</head>
<body>
<picture>
2022-05-27 19:28:40 +00:00
<source srcset="img/logo.avif" type="image/avif">
<source srcset="img/logo.webp" type="image/webp">
<source srcset="img/logo.png" type="image/png">
<img src="img/logo.png" alt="exozyme" height="360" width="360">
</picture>
2022-05-25 21:56:56 +00:00
<h1>Join exozyme!</h1>
<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>
2022-05-24 03:43:22 +00:00
<form method="post" action="/api/user/new">
<input type="text" placeholder="Secret code" name="code" required>
<input type="text" placeholder="First name" name="firstname" required>
<input type="text" placeholder="Last name" name="lastname" required>
<input type="email" placeholder="Email" name="email" required>
<input type="text" pattern="[a-z][a-z0-9]*" placeholder="Username" name="username" required>
<input type="password" placeholder="Strong password" name="password" required>
<input type="password" placeholder="Confirm password" name="confirmpassword" required>
2022-05-25 21:56:56 +00:00
<input type="submit" value="Join!" name="submit">
</form>
</body>
2021-11-22 20:48:46 +00:00
</html>