25 lines
513 B
HTML
25 lines
513 B
HTML
<html>
|
|
<head>
|
|
<title>Vinlottis</title>
|
|
<link
|
|
href="https://fonts.googleapis.com/css?family=Roboto&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Official vin lottis homepage</h1>
|
|
<form method="post" action="/register">
|
|
<input type="text" name="username" />
|
|
<input type="password" name="password" />
|
|
<input type="submit" value="register" />
|
|
</form>
|
|
</body>
|
|
|
|
<style>
|
|
body {
|
|
font-family: "Roboto", sans-serif;
|
|
}
|
|
</style>
|
|
</html>
|