forked from s3lph/matemat
20 lines
511 B
HTML
20 lines
511 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Matemat</title>
|
|
<style>
|
|
body {
|
|
color: #f0f0f0;
|
|
background: #000000;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Matemat</h1>
|
|
<form action="/login" method="post">
|
|
Username: <input type="text" name="username"/><br/>
|
|
Password: <input type="password" name="password" /><br/>
|
|
<input type="submit" value="Login"/>
|
|
</form>
|
|
</body>
|
|
</html>
|