-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.php
More file actions
30 lines (27 loc) · 1.02 KB
/
contact.php
File metadata and controls
30 lines (27 loc) · 1.02 KB
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
26
27
28
29
30
<?php require_once 'init.php'; ?>
<html>
<head>
<title>Pokésearch | About Us</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<?php require_once 'layouts/favicon.php'; ?>
</head>
<body>
<?php require_once 'layouts/mininav.php'; ?>
<div class="content">
<?php require_once 'layouts/header.php'; ?>
<span class="content-body">
<h1>Contact Us</h1>
<p>If you have any feature requests, bug reports, or any comments of criticism
or praise that you'd want to tell me, please feel free to reach out
to me through my email or Discord.
</p>
<h2>Email</h2>
<p>mail (at) angelolz (dot) dev</p>
<h2>Discord</h2>
<p>Angelolz#6969</p>
</span>
</div>
<?php require_once 'layouts/footer.php'; ?>
</body>
</html>