mirror of
https://github.com/milk-net/milk-net.github.io.git
synced 2025-04-20 10:03:41 -05:00
Create auth.html
This commit is contained in:
parent
41e9400939
commit
957aa30f9b
1 changed files with 28 additions and 0 deletions
28
forum/auth.html
Normal file
28
forum/auth.html
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Auth - MilkNet Forum</title>
|
||||||
|
<link rel="stylesheet" href="style.css">
|
||||||
|
<script src="https://challenges.cloudflare.com/turnstile/v0/api.js" async defer></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="auth-container">
|
||||||
|
<h1>Login</h1>
|
||||||
|
<input type="text" id="reg-username" placeholder="Username"><br>
|
||||||
|
<input type="password" id="reg-password" placeholder="Password"><br>
|
||||||
|
<div class="cf-turnstile" data-sitekey="YOUR_SITE_KEY_HERE"></div><br>
|
||||||
|
<button onclick="register()">Register</button>
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
<h2>Already registered?</h2>
|
||||||
|
<input type="text" id="login-username" placeholder="Username"><br>
|
||||||
|
<input type="password" id="login-password" placeholder="Password"><br>
|
||||||
|
<button onclick="login()">Login</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script src="auth.js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Add table
Reference in a new issue