diff options
author | Freya Murphy <freya@freyacat.org> | 2024-05-20 17:11:38 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-05-20 17:11:38 -0400 |
commit | 708594d32ffe779cf547c816fa7cdd19d095be2e (patch) | |
tree | 30d28553316db02bc027664e17b76d58f2e352ff /src/web/_views/modal | |
parent | add en_CAT makefile and use ucfirst/ucwords (diff) | |
download | xssbook2-708594d32ffe779cf547c816fa7cdd19d095be2e.tar.gz xssbook2-708594d32ffe779cf547c816fa7cdd19d095be2e.tar.bz2 xssbook2-708594d32ffe779cf547c816fa7cdd19d095be2e.zip |
v2 done
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> |