1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-04-19 22:36:49 +00:00
kawari/templates/login.html
Joshua Goins 3e3e36a05e Rename webpage titles and only mention "Kawari"
Obviously this shouldn't advertise itself as the real game.
2024-06-29 14:14:51 -04:00

18 lines
No EOL
417 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Kawari - Login</title>
</head>
<body>
<form 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'>Login</button>
</form>
</body>
</html>