diff options
| author | George Halkiadakis <gchalkiadakis@sklavenitis.co.gr> | 2023-06-02 03:31:32 +0300 |
|---|---|---|
| committer | George Halkiadakis <gchalkiadakis@sklavenitis.co.gr> | 2023-06-02 03:31:32 +0300 |
| commit | 48632666db08ccb58291b34e693280bf15d44fdf (patch) | |
| tree | 0a738d62f1ede9066e57acbec984b1e3314f6ec0 /public/app/views/js | |
| parent | a8429525dfcfa7d5ca60fd98a240e2b5c92c5edf (diff) | |
| download | gyraf1gov-48632666db08ccb58291b34e693280bf15d44fdf.tar.gz gyraf1gov-48632666db08ccb58291b34e693280bf15d44fdf.tar.bz2 gyraf1gov-48632666db08ccb58291b34e693280bf15d44fdf.zip | |
Auth class cleaned; hot session reset
Diffstat (limited to 'public/app/views/js')
| -rw-r--r-- | public/app/views/js/credits.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/public/app/views/js/credits.php b/public/app/views/js/credits.php new file mode 100644 index 0000000..ca0f15c --- /dev/null +++ b/public/app/views/js/credits.php @@ -0,0 +1,10 @@ +<script> +// create image-credits div +let ic_div = document.createElement('div'); +ic_div.innerHTML = '<a href="<?=THEME['url']?>" target="_blank" title="Attribution for the lovely background image"><?=THEME['label']?></a>'; +ic_div.className = 'image-credits'; + +// append image-credits div to body +document.querySelector('body').appendChild(ic_div); + +</script>
\ No newline at end of file |
