mirror of
https://github.com/redstrate/Kawari.git
synced 2025-04-25 08:27:44 +00:00
18 lines
408 B
HTML
18 lines
408 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>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>
|