1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-05-15 07:57:46 +00:00
kawari/templates/register.html
Joshua Goins 09c347178c Add barebones account management page
This also moves the login pages to the login server, which makes the
code slightly a bit more contained. The account management page doesn't
allow you to do anything yet, but for future usage.
2025-04-05 22:40:44 -04:00

18 lines
453 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Kawari -Register</title>
</head>
<body>
<form action='/oauth/oa/registlist' 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>