1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-05-07 13:07:45 +00:00
kawari/templates/register.html
Joshua Goins bd23c04848 Add a basic login system
This allows you to register in the web frontend now, and the login server now
checks this before giving a session ID. Note that this is wildly insecure (it
stores the passwords in plaintext!) and is duly noted in the USAGE.
2025-03-16 20:55:51 -04:00

18 lines
473 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Kawari -Register</title>
</head>
<body>
<form action='http://ffxiv-login.square.local/register' method='post'>
<label for="username">Username:</label><br>
<input type='text' id='username' name='username'/><br>
<label for="password">Password:</label><br>
<input type='text' id='password' name='password'/><br>
<button type='submit'>Register</button>
</form>
</body>
</html>