1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-05-08 05:27:44 +00:00
kawari/templates/register.html
NotNite e3b5bea440 Move to .localhost TLD for Caddyfile
.local is reserved for mDNS (see RFC 6762), and it wasn't properly
resolving on my machine. .localhost (RFC 6761) seems more correct.
2025-03-17 16:40:04 -04:00

18 lines
477 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Kawari -Register</title>
</head>
<body>
<form action='http://ffxiv-login.square.localhost/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>