about summary refs log tree commit diff stats
path: root/central/trunk/index.php
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2008-08-15 13:32:35 +0000
committerKelly Rauchenberger <fefferburbia@gmail.com>2008-08-15 13:32:35 +0000
commit77bc692bb7694aa635be1ca3752894e976477ebb (patch)
treeaf4a392f30298339f511c60dcc4df8ce25941ec9 /central/trunk/index.php
parent68878a057b30f338eda7cacfe5f93cd850e8aaa1 (diff)
downloadinstadisc-77bc692bb7694aa635be1ca3752894e976477ebb.tar.gz
instadisc-77bc692bb7694aa635be1ca3752894e976477ebb.tar.bz2
instadisc-77bc692bb7694aa635be1ca3752894e976477ebb.zip
Central: Moved over to Four Island Templating system
Borrowed the Four Island templating system code so as to ease the creation of frontends. index.php and activate.php have already been converted, and install.php will not
be converted (because it would be too difficult, and who would want to skin it anyway?)

NOTICE: The Four Island Templating system source code is copyrighted by Starla Insigna (c) 2008. All rights reserved. Use of this code in part or in whole apart from the
InstaDisc Central Server is a direct violation of copyright law. You have been warned.

Refs #25
Diffstat (limited to 'central/trunk/index.php')
-rw-r--r--central/trunk/index.php24
1 files changed, 5 insertions, 19 deletions
diff --git a/central/trunk/index.php b/central/trunk/index.php index ce71def..1ef9c9d 100644 --- a/central/trunk/index.php +++ b/central/trunk/index.php
@@ -3,24 +3,10 @@
3/* InstaDisc Server - A Four Island Project */ 3/* InstaDisc Server - A Four Island Project */
4 4
5include('instadisc.php'); 5include('instadisc.php');
6include('template.php');
6 7
7?> 8$template = new FITemplate('index');
8<HTML> 9$template->add('SITENAME', instaDisc_getConfig('siteName'));
9 <HEAD> 10$template->display();
10 <TITLE>Four Island InstaDisc Central Server</TITLE>
11 </HEAD>
12 <BODY>
13 <CENTER>
14 <H1><?php echo(instaDisc_getConfig('siteName')); ?> InstaDisc</H1>
15 11
16 <P>Welcome to <?php instaDisc_getConfig('siteName')); ?>'s InstaDisc Central Server! 12?>
17 <P>InstaDisc is a wonderful productivity-increasing notification program. For more information about the project itself, see
18 <A HREF="http://fourisland.com/projects/instadisc/">its project site</A>.<P>An InstaDisc "Central Server" is where you can
19 register for the InstaDisc service. There are many Central Servers around the world, you generally pick the one that is
20 closest to you. If you would like to choose <?php echo(instaDisc_getConfig('siteName')); ?>'s, why not register now?
21 <P><A HREF="register.php">Register</A>
22 <BR><A HREF="login.php">Login</A>
23 <BR><A HREF="activate.php">Activation page</A>
24 </CENTER>
25 </BODY>
26</HTML>