mirror of
https://github.com/milk-net/milk-net.github.io.git
synced 2025-04-19 17:43:42 -05:00
37 lines
1.3 KiB
HTML
37 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>MilkBoard | Login / Register</title>
|
|
<script src="https://challenges.cloudflare.com/turnstile/v0/api.js" async defer></script>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Login / Register</h1>
|
|
</header>
|
|
|
|
<main>
|
|
<section id="login-register">
|
|
<form id="auth-form">
|
|
<label for="username">Username:</label>
|
|
<input type="text" id="username" required>
|
|
<label for="password">Password:</label>
|
|
<input type="password" id="password" required>
|
|
<div class="turnstile-container">
|
|
<div class="cf-turnstile" data-sitekey="0x4AAAAAABL-mVGZhgs_SDwZ"></div>
|
|
</div>
|
|
<button type="submit" id="auth-submit">Login/Register</button>
|
|
</form>
|
|
</section>
|
|
</main>
|
|
|
|
<footer>
|
|
<a href="/"><img src="/assets/img/88x31.png" loading="lazy" width="88" height="31"></a>
|
|
<a href="/"><img src="/assets/img/88x31_light.png" loading="lazy" width="88" height="31"></a>
|
|
</footer>
|
|
|
|
<script src="auth.js"></script>
|
|
</body>
|
|
</html>
|