summaryrefslogtreecommitdiffstats
path: root/templates/show_install_account.inc.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-04-18 08:47:08 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-04-18 08:47:08 +0000
commit4632a09466e986b311136fd0150bd4004b003c16 (patch)
treeabcf4a6bd0f8763634b3924b4e538eccdad9731c /templates/show_install_account.inc.php
parenta8aff4f67f9cc15e93bcd46668ae8e698d778acf (diff)
downloadampache-4632a09466e986b311136fd0150bd4004b003c16.tar.gz
ampache-4632a09466e986b311136fd0150bd4004b003c16.tar.bz2
ampache-4632a09466e986b311136fd0150bd4004b003c16.zip
new install theme and fixed jpeg resize issues
Diffstat (limited to 'templates/show_install_account.inc.php')
-rw-r--r--templates/show_install_account.inc.php61
1 files changed, 35 insertions, 26 deletions
diff --git a/templates/show_install_account.inc.php b/templates/show_install_account.inc.php
index 0206eacf..71ce402c 100644
--- a/templates/show_install_account.inc.php
+++ b/templates/show_install_account.inc.php
@@ -30,48 +30,57 @@
<title>Ampache :: For The Love Of Music - Install</title>
</head>
<body>
-<?php require_once(conf('prefix') . "/templates/style.inc"); ?>
-<div class="text-box">
-<span class="header1"><?php echo _("Ampache Installation"); ?></span>
-<p>
-<?php echo _("This Page handles the installation of the Ampache database and the creation of the ampache.cfg.php file. Before you continue please make sure that you have the following pre-requisites"); ?>
-</br />
-<ul>
+<?php require_once(conf('prefix') . "/templates/install.css"); ?>
+<div id="header">
+<h1><?php echo _("Ampache Installation"); ?></h1>
+<p>For the love of Music</p>
+</div>
+
+<div id="text-box">
+
+ <div class="notify">
+ <?php echo _("This Page handles the installation of the Ampache database and the creation of the ampache.cfg.php file. Before you continue please make sure that you have the following pre-requisites"); ?>
+ <br />
+ <ul>
<li><?php echo _("A MySQL Server with a username and password that can create/modify databases"); ?></li>
<li><?php echo _("Your webserver has read access to the /sql/ampache.sql file and the /config/ampache.cfg.dist.php file"); ?></li>
-</ul>
+ </ul>
<?php echo _("Once you have ensured that you have the above requirements please fill out the information below. You will only be asked for the required config values. If you would like to make changes to your ampache install at a later date simply edit /config/ampache.cfg.php"); ?>
-</p>
-</div>
+ </div>
-<div class="text-box">
-<?php echo _("Step 1 - Creating and Inserting the Ampache Database"); ?><br />
-<?php echo _("Step 2 - Creating the ampache.cfg.php file"); ?><br />
-<b><?php echo _("Step 3 - Setup Initial Account"); ?></b><br />
-<dl>
+ <div class="content">
+ <?php echo _("Step 1 - Creating and Inserting the Ampache Database"); ?><br />
+ <?php echo _("Step 2 - Creating the ampache.cfg.php file"); ?><br />
+ <b><?php echo _("Step 3 - Setup Initial Account"); ?></b><br />
+ <dl>
<dd><?php echo _("This step creates your initial Ampache admin account. Once your admin account has been created you will be directed to the login page"); ?></dd>
-</dl>
-<br /><br />
-<span class="header2"><?php echo _('Create Admin Account'); ?></span>
-<?php echo $GLOBALS['error']->print_error('general'); ?>
-<form method="post" action="<?php echo $GLOBALS['php_self'] . "?action=create_account"; ?>" enctype="multipart/form-data" >
-<table cellpadding="5" cellspacing="0" border="0">
+ </dl>
+ <br /><br />
+ <span class="header2"><?php echo _('Create Admin Account'); ?></span>
+ <?php echo $GLOBALS['error']->print_error('general'); ?>
+ <form method="post" action="<?php echo $GLOBALS['php_self'] . "?action=create_account"; ?>" enctype="multipart/form-data" >
+<table>
<tr>
- <td><?php echo _("Username"); ?></td>
+ <td class="align"><?php echo _("Username"); ?></td>
<td><input type="textbox" name="local_username" value="admin" /></td>
</tr>
<tr>
- <td><?php echo _("Password"); ?></td>
+ <td class="align"><?php echo _("Password"); ?></td>
<td><input type="password" name="local_pass" value="" /></td>
</tr>
<tr>
<td>&nbsp;</td>
<td><input type="submit" value="<?php echo _("Create Account"); ?>" /></td>
</tr>
-</table>
-</form>
-</div>
+ </table>
+ </form>
+ </div>
+ <div id="bottom">
+ <p><b>Ampache Installation.</b><br />
+ For the love of Music.</p>
+ </div>
+</div>
</body>
</html>