Added credits

This commit is contained in:
Tracker-Friendly 2024-03-14 17:06:07 +00:00
parent cfaca88498
commit 39ee1bc458
4 changed files with 14 additions and 1 deletions

View File

@ -1,3 +1,5 @@
# Burgernotes-client-web
Burgernotes web client
Burgernotes web client
/static/img/background.jpg by perga (@pergagreen on discord)

View File

@ -21,6 +21,7 @@
</head>
<body>
<p class="credit">Image by perga (@pergagreen on discord)</p>
<img src="/static/img/background.jpg" class="background">
<div class="inoutdiv">
<h2 class="w300">Login</h2>

View File

@ -21,6 +21,7 @@
</head>
<body>
<p class="credit">Image by perga (@pergagreen on discord)</p>
<img src="/static/img/background.jpg" class="background">
<div class="inoutdiv">
<h2 class="w300">Signup</h2>

View File

@ -565,6 +565,15 @@ body {
min-height: 100%;
}
.credit {
position: fixed;
left: 5px;
color: white;
z-index: -1;
margin: 0;
bottom: 5px;
}
.hidden {
display: none !important;
}