mirror of
https://github.com/redstrate/Kawari.git
synced 2025-05-02 11:07:45 +00:00
18 lines
414 B
HTML
18 lines
414 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>Register</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'>Register</button>
|
||
|
</form>
|
||
|
|
||
|
</body>
|
||
|
</html>
|