webchain/templates/register.html.tera

49 lines
1.3 KiB
Plaintext

<html lang="">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="/public/css/pico.slate.css" rel="stylesheet">
<style>
:root {
--pico-border-radius: 0;
--pico-form-element-spacing-vertical: .3rem;
--pico-form-element-spacing-horizontal: .5rem;
--pico-font-size: 100%;
}
.container {
margin: 0;
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
max-width: 20%;
}
</style>
<title>Webchain</title>
</head>
<body>
<main class="container">
<form method="POST" enctype="multipart/form-data" action="/register">
<input type="text"
name="username"
placeholder="Username"
aria-label="Password"
value="{{ username }}"
/>
<input type="text"
name="password"
placeholder="Password"
aria-label="Password"
value="{{ password }}"
/>
<input type="submit" value="Register"/>
</form>
<a href="/login">Login instead</a>
</main>
</body>
</html>