]> andersk Git - sql-web.git/blame - tpl/main.php
git-svn-id: svn://presbrey.mit.edu/sql/mitsql@43 a142d4bd-2cfb-0310-9673-cb33a7e74f58
[sql-web.git] / tpl / main.php
CommitLineData
dc478ec8
JP
1<?php
2
3include 'head.php';
4
5?>
6<h2>Databases</h2>
1389493c 7
377015e0
JP
8<?php printErrors($err); ?>
9
10<? if (!DEVEL) { ?>
1389493c
JP
11<p>
12Thanks for signing up. This interface is nearly ready. We will e-mail you as soon as this portion of the site is ready.
13<br />
14<br />
15- The MIT SQL Team
16</p>
377015e0
JP
17<? } else { ?>
18
2ea5a69f
JP
19<ul>
20<?php
21 foreach($myDBs as $db) {
22
23 echo '<li>',$db,'</li>';
24
25 }
26?>
27</ul>
28
377015e0
JP
29<form method="post">
30<p><span style="width: 150px;"><label for="p1">new database:</label></span> <input type="text" name="newdb">
31<input type=submit value="Add"></p>
32</form>
1389493c 33
377015e0 34<? } ?>
dc478ec8
JP
35<?php
36
37include 'foot.php';
38
39?>
This page took 0.063349 seconds and 5 git commands to generate.