blob: 55ea3f0a621d725dfd659fcbd4a8852456ae3b79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<?php /* Copyright (c) 2024 Freya Murphy */ ?>
<?php /* vi: syntax=php */ ?>
<div id="about-modal-body">
<span class="logo">xssbook</span>
<span class="mb"><?=ucfirst(lang('version'))?></span>
<span><?=ucfirst(lang('copyright'))?></span>
<a class="btn btn-primary mt" href="https://g.freya.cat/freya/xssbook2">Source Code</a>
<p>For reports of abuse, please email <a class="btn-primary" href="mailto:contact@freyacat.org">contact@freyacat.org</a></p>
</div>
<style>
#about-modal-body {
display: flex;
margin-top: 50px;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 1rem;
}
#about-modal-body .logo {
color: var(--blue);
font-family: facebook;
font-size: 2.25rem;
margin-bottom: 1rem;
}
</style>
|