Auth: refresh visuals
parent
709411ac03
commit
70200e4ae7
127
web/auth.html
127
web/auth.html
|
@ -9,8 +9,18 @@
|
||||||
<link rel="icon" type="image/x-icon" href="/favicon.png" />
|
<link rel="icon" type="image/x-icon" href="/favicon.png" />
|
||||||
<title>Login to SilverBullet</title>
|
<title>Login to SilverBullet</title>
|
||||||
<style>
|
<style>
|
||||||
html,
|
*,
|
||||||
body {
|
*::before,
|
||||||
|
*::after {
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
* {
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
html {
|
||||||
font-family:
|
font-family:
|
||||||
-apple-system,
|
-apple-system,
|
||||||
BlinkMacSystemFont,
|
BlinkMacSystemFont,
|
||||||
|
@ -24,56 +34,113 @@
|
||||||
"Segoe UI Emoji",
|
"Segoe UI Emoji",
|
||||||
"Segoe UI Symbol",
|
"Segoe UI Symbol",
|
||||||
"Noto Color Emoji";
|
"Noto Color Emoji";
|
||||||
border: 0;
|
background-color: #fefefe;
|
||||||
margin: 0;
|
--primary-button-color: #eee;
|
||||||
}
|
--primary-button-background-color: #464cfc;
|
||||||
|
--primary-button-hover-background-color: color-mix(
|
||||||
footer {
|
in srgb,
|
||||||
margin-top: 10px;
|
var(--primary-button-background-color),
|
||||||
|
black 35%
|
||||||
|
);
|
||||||
|
--primary-button-border-color: transparent;
|
||||||
|
--modal-border-color: #6c6c6c;
|
||||||
}
|
}
|
||||||
|
|
||||||
header {
|
header {
|
||||||
background-color: #e1e1e1;
|
position: absolute;
|
||||||
border-bottom: #cacaca 1px solid;
|
padding: 1rem;
|
||||||
|
font-size: 1.2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
margin: 0;
|
font-size: 1.5rem;
|
||||||
margin: 0 auto;
|
|
||||||
max-width: 800px;
|
|
||||||
padding: 8px;
|
|
||||||
font-size: 28px;
|
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
form {
|
|
||||||
max-width: 800px;
|
|
||||||
margin: 0 auto;
|
|
||||||
padding: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
input {
|
input {
|
||||||
font-size: 18px;
|
font-family: inherit;
|
||||||
|
font-size: inherit;
|
||||||
|
padding: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
form > div {
|
form > div {
|
||||||
margin-bottom: 5px;
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
flex-grow: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
button {
|
||||||
|
background: var(--primary-button-background-color);
|
||||||
|
color: var(--primary-button-color);
|
||||||
|
box-shadow: 0 0 0.2em rgba(0, 0, 0, 0.05);
|
||||||
|
border: 1px solid var(--border-color);
|
||||||
|
padding: 0.7em;
|
||||||
|
border-radius: 0.5em;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background-color: var(--primary-button-hover-background-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
&:focus {
|
||||||
|
outline: 2px solid var(--primary-button-color);
|
||||||
|
outline-offset: -3px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.error-message {
|
.error-message {
|
||||||
color: red;
|
color: red;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.center {
|
||||||
|
height: 100vh;
|
||||||
|
display: grid;
|
||||||
|
place-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 28em) {
|
||||||
|
html {
|
||||||
|
--top-color: #66A3BB;
|
||||||
|
--bottom-color: #0B3A69;
|
||||||
|
background: linear-gradient(var(--top-color), var(--bottom-color));
|
||||||
|
}
|
||||||
|
|
||||||
|
.floating-island {
|
||||||
|
padding: 3em;
|
||||||
|
border-radius: 8px;
|
||||||
|
box-shadow: rgba(0, 0, 0, 0.35) 0px 20px 20px;
|
||||||
|
background-color: white;
|
||||||
|
border: var(--modal-border-color) 1px solid; }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.flow {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: flex-start;
|
||||||
|
}
|
||||||
|
|
||||||
|
.flow > * {
|
||||||
|
margin-block: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.flow > * + * {
|
||||||
|
margin-block-start: var(--space, 1rem);
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<div class="center">
|
||||||
|
<div class="flow floating-island">
|
||||||
<h1>
|
<h1>
|
||||||
Login to <img src="/.client/logo.png" style="height: 1ch" />
|
Login to <img src="/.client/logo.png" style="height: 1ch" />
|
||||||
SilverBullet
|
SilverBullet
|
||||||
</h1>
|
</h1>
|
||||||
</header>
|
<form action="/.auth" method="POST" id="login" class="flow">
|
||||||
<form action="/.auth" method="POST" id="login">
|
|
||||||
<div class="error-message"></div>
|
<div class="error-message"></div>
|
||||||
<div>
|
<div>
|
||||||
<label for="username">
|
<label for="username">
|
||||||
|
@ -99,13 +166,15 @@
|
||||||
id="password"
|
id="password"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div style="--space: 1.8rem">
|
||||||
<input type="submit" value="Login" />
|
<button>Login</button>
|
||||||
</div>
|
</div>
|
||||||
|
</form>
|
||||||
<footer>
|
<footer>
|
||||||
<a href="https://silverbullet.md">What is SilverBullet?</a>
|
<a href="https://silverbullet.md">What is SilverBullet?</a>
|
||||||
</footer>
|
</footer>
|
||||||
</form>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
const params = new URLSearchParams(window.location.search);
|
const params = new URLSearchParams(window.location.search);
|
||||||
|
|
Loading…
Reference in New Issue