Footer hinzugefügt

This commit is contained in:
root 2023-03-25 12:15:07 +01:00
parent 37efdc7c81
commit 56bde40f69
3 changed files with 17 additions and 1 deletions

View File

@ -3,9 +3,12 @@
// Title
$title = "imgpaste by gideonstar";
// Displayed text
// Dropzone text
$text = "Click or drop image here...";
// Footer text
$footer = '<a href="https://git.stefanritter.de/gideonstar/imgpaste.git">imgpaste</a> by gideonstar';
// Themes can be found in the themes directory
$theme = "gideonstar";

View File

@ -20,6 +20,7 @@
<div id="dropzone" class="inactive">
<p><?php echo $text; ?></p>
</div>
<div id="footer"><?php echo $footer; ?></div>
</div>
<script src="script.js"></script>
</body>

View File

@ -46,3 +46,15 @@ body {
outline: 2px dashed #d5d5d5;
}
#footer {
position: absolute;
bottom: 15px;
right: 15px;
color: white;
font-size: .8em;
}
a {
color: #ffb703;
text-decoration: none;
}