-
Notifications
You must be signed in to change notification settings - Fork 0
/
demos.html
46 lines (45 loc) · 1.49 KB
/
demos.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html>
<head>
<title>Aluminum CSS</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://fonts.googleapis.com/css2?family=Noto+Sans+Mono:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet"
/>
<link rel="icon" type="image/jpeg" href="/icon.jpg" />
<link rel="stylesheet" type="text/css" href="dist/aluminium.min.css" />
<style>
.background {
min-height: 100vh;
}
.window {
border: var(--alu-border-width) solid var(--alu-border-color);
background: var(--alu-summary-background);
max-width: 400px;
width: 95%;
padding: var(--alu-xl-gap);
}
</style>
</head>
<body class="alu-all">
<div class="column centered background">
<div class="window">
<div class="text-xl mb-lg">Sign in</div>
<form action="/login" method="post">
<div class="column gap-sm mb-md">
<label>Password</label>
<input name="token" type="password" />
</div>
<input type="hidden" name="redirect" value="{{redirect}}" />
<button>Sign in</button>
{{#error}}
<div class="mt-md" style="color: red">{{error}}</div>
{{/error}}
</form>
</div>
</div>
</body>
</html>