mirror of
https://github.com/redstrate/Kawari.git
synced 2025-05-09 13:47:45 +00:00
I plan on including some Bootstrap styling, and I don't want that to bloat the binaries. This also means people can easily modify the pages if they want.
18 lines
453 B
HTML
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>
|