Files
vinlottis/public/register.html
Kasper Rynning-Tønnesen 6daef0fddd pepega
2020-01-17 16:33:36 +01:00

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>