]> jfr.im git - irc/unrealircd/unrealircd-webpanel.git/blame - footer.php
settings/install.php: make a big start to the installation page
[irc/unrealircd/unrealircd-webpanel.git] / footer.php
CommitLineData
2f8a5fe8
VP
1<footer class="text-center bg-dark text-white fixed-bottom" style="background-color: #f1f1f1;">
2 <!-- Grid container -->
3 <div class="container">
4 <!-- Section: Social media -->
5
6 <?php $arr = []; Hook::run(HOOKTYPE_PRE_FOOTER, $arr); ?>
d72d1923 7
2f8a5fe8 8 <section class="mt-1">
148df839 9 <a href="https://unrealircd.org/" class="btn btn-default" style="color:white">© 1999-<?php echo date('Y'); ?> UnrealIRCd</a>
809f7483 10
2f8a5fe8
VP
11 <!-- Twitter -->
12 <a
13 class="btn btn-link btn-floating btn-lg text-white"
14 href="https://twitter.com/Unreal_IRCd"
15 role="button"
16 data-mdb-ripple-color="dark"
17 ><i class="fab fa-twitter"></i
18 ></a>
19 <!-- Github -->
20 <a
21 class="btn btn-link btn-floating btn-lg text-white"
22 href="https://github.com/unrealircd/unrealircd-webpanel"
23 role="button"
24 data-mdb-ripple-color="dark"
c3805b04 25 ><i style="margin-left: -18px" class="fab fa-github"></i
2f8a5fe8
VP
26 ></a>
27 <!-- UnrealIRCd -->
28 <a
29 href="https://unrealircd.org"
30 role="button"
31 data-mdb-ripple-color="dark">
ea90b321 32 <img src="<?php echo get_config("base_url"); ?>img/unreal.jpg" width="23" height="23" style="margin-right: 25px"></a>
d0843e71
VP
33
34 <i id="bugreport" style="margin-left: -18px; margin-right: 10px;" height="1000px" class="fa fa-bug" data-toggle="tooltip" data-placement="top" title="Report a bug (Opens in new tab)"></i>
2f8a5fe8
VP
35
36 <?php
d72d1923 37
2f8a5fe8
VP
38 $arr = []; Hook::run(HOOKTYPE_FOOTER, $arr);
39
40 ?>
41
d0843e71 42
ce9cf366 43</div>
9057b83a 44</div><!-- Second div is because there is a container div in the header-->
2d62c85d
VP
45
46</footer>
47</body>
d0843e71
VP
48</html>
49<script>
50 var bugreport = document.getElementById('bugreport');
51 bugreport.addEventListener('click', (e) => {
52 window.open("https://github.com/unrealircd/unrealircd-webpanel/issues/new?labels=bug&template=bug_report.md", '_blank');
53 });
54</script>