login page

This commit is contained in:
Jan Prochazka
2022-11-25 13:36:18 +01:00
parent 07b2a3e923
commit 70413b954b
6 changed files with 153 additions and 10 deletions

View File

@@ -0,0 +1,18 @@
<script lang="ts">
import { onMount } from 'svelte';
onMount(() => {
const removed = document.getElementById('starting_dbgate_zero');
if (removed) removed.remove();
});
</script>
<div class='title'>Sorry, you are not authorized to run DbGate</div>
<style>
.title {
font-size: x-large;
margin-top: 20vh;
text-align: center;
}
</style>