-
Notifications
You must be signed in to change notification settings - Fork 1
/
airship_nomore.php
35 lines (34 loc) · 968 Bytes
/
airship_nomore.php
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
31
32
33
34
35
<?php
// confirm the session...
require_once 'commons/dbconnect.php';
require_once 'commons/rpgfunctions.php';
require_once 'commons/sessions.php';
require_once 'commons/formatting.php';
require_once 'commons/grammar.php';
require_once 'commons/utility.php';
include 'commons/html.php';
?>
<head>
<?php include 'commons/head.php'; ?>
<title><?= $SETTINGS['site_name'] ?> > Aeronautical Society > Airship No Longer Exists</title>
<style type="text/css">
#family td
{
padding-left: 3em;
}
</style>
</head>
<body>
<?php include 'commons/header_2.php'; ?>
<h4>Aeronautical Society > Airship No Longer Exists</h4>
<?php
include 'commons/dialog_open.php';
?>
<p>This Airship no longer exists (it was retired by its owner), or never did (you're playing with the number in the URL).</p>
<p>Terribly sorry about the inconvenience.</p>
<?php
include 'commons/dialog_close.php';
?>
<?php include 'commons/footer_2.php'; ?>
</body>
</html>