diff options
Diffstat (limited to 'src/web/_views/modal')
-rw-r--r-- | src/web/_views/modal/about.php | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/web/_views/modal/about.php b/src/web/_views/modal/about.php new file mode 100644 index 0000000..746607e --- /dev/null +++ b/src/web/_views/modal/about.php @@ -0,0 +1,28 @@ +<?php /* Copyright (c) 2024 Freya Murphy */ ?> +<?php /* vi: syntax=php */ ?> +<div id="about-modal-body"> + <span class="logo">xssbook</span> + <hr> + <span class="mb"><?=ucfirst(lang('version'))?></span> + <span><?=ucfirst(lang('copyright'))?></span> + <hr> + <a class="btn btn-blue" href="https://g.freya.cat/freya/xssbook2">Source Code</a> +</div> +<style> +#about-modal-body { + display: flex; + margin-top: 50px; + flex-direction: column; + justify-content: center; + align-items: center; + font-weight: bold; + font-size: 1.1rem; + padding: 1rem; +} +#about-modal-body .logo { + color: var(--blue); + font-family: facebook; + font-size: 2.25rem; + margin-bottom: 1rem; +} +</style> |