diff options
Diffstat (limited to 'templates/show_install.inc.php')
-rw-r--r-- | templates/show_install.inc.php | 74 |
1 files changed, 37 insertions, 37 deletions
diff --git a/templates/show_install.inc.php b/templates/show_install.inc.php index ea2f86a9..7350f431 100644 --- a/templates/show_install.inc.php +++ b/templates/show_install.inc.php @@ -1,5 +1,5 @@ <?php -/* vim:set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab: */ +/* vim:set softtabstop=4 shiftwidth=4 expandtab: */ /** * * LICENSE: GNU General Public License, version 2 (GPLv2) @@ -23,66 +23,66 @@ $prefix = realpath(dirname(__FILE__). "/../"); require $prefix . '/templates/install_header.inc.php'; ?> - <div class="content"> - <strong><?php echo T_('Step 1 - Create the Ampache database'); ?></strong><br /> - <dl> - <dd><?php echo T_('This step creates and inserts the Ampache database, so please provide a MySQL account with database creation rights. This step may take some time on slower computers.'); ?></dd> - </dl> - <?php echo T_('Step 2 - Create ampache.cfg.php'); ?><br /> - <?php echo T_('Step 3 - Set up the initial account'); ?><br /> - <br /> - <?php Error::display('general'); ?> - <br /> - <span class="header2"><?php echo T_('Insert Ampache Database'); ?></span> - <form method="post" action="<?php echo WEB_PATH . "?action=create_db&htmllang=$htmllang&charset=$charset"; ?>" enctype="multipart/form-data" > + <div class="content"> + <strong><?php echo T_('Step 1 - Create the Ampache database'); ?></strong><br /> + <dl> + <dd><?php echo T_('This step creates and inserts the Ampache database, so please provide a MySQL account with database creation rights. This step may take some time on slower computers.'); ?></dd> + </dl> + <?php echo T_('Step 2 - Create ampache.cfg.php'); ?><br /> + <?php echo T_('Step 3 - Set up the initial account'); ?><br /> + <br /> + <?php Error::display('general'); ?> + <br /> + <span class="header2"><?php echo T_('Insert Ampache Database'); ?></span> + <form method="post" action="<?php echo WEB_PATH . "?action=create_db&htmllang=$htmllang&charset=$charset"; ?>" enctype="multipart/form-data" > <table> <tr> - <td class="align"><?php echo T_("Desired Database Name"); ?></td> - <td><input type="text" name="local_db" value="ampache" /></td> + <td class="align"><?php echo T_("Desired Database Name"); ?></td> + <td><input type="text" name="local_db" value="ampache" /></td> </tr> <tr> - <td class="align"><?php echo T_("MySQL Hostname"); ?></td> - <td><input type="text" name="local_host" value="localhost" /></td> + <td class="align"><?php echo T_("MySQL Hostname"); ?></td> + <td><input type="text" name="local_host" value="localhost" /></td> </tr> <tr> - <td class="align"><?php echo T_("MySQL Administrative Username"); ?></td> - <td><input type="text" name="local_username" value="root" /></td> + <td class="align"><?php echo T_("MySQL Administrative Username"); ?></td> + <td><input type="text" name="local_username" value="root" /></td> </tr> <tr> - <td class="align"><?php echo T_("MySQL Administrative Password"); ?></td> - <td><input type="password" name="local_pass" /></td> + <td class="align"><?php echo T_("MySQL Administrative Password"); ?></td> + <td><input type="password" name="local_pass" /></td> </tr> <tr> - <td class="align"><?php echo T_("Create Database User for New Database"); ?>? </td> - <td><input type="checkbox" value="create_db_user" name="db_user" onclick="flipField('db_username');flipField('db_password');" /></td> + <td class="align"><?php echo T_("Create Database User for New Database"); ?>? </td> + <td><input type="checkbox" value="create_db_user" name="db_user" onclick="flipField('db_username');flipField('db_password');" /></td> </tr> <tr> - <td class="align"><?php echo T_("Ampache Database Username"); ?></td> - <td><input type="text" id="db_username" name="db_username" value="ampache" /></td> + <td class="align"><?php echo T_("Ampache Database Username"); ?></td> + <td><input type="text" id="db_username" name="db_username" value="ampache" /></td> </tr> <tr> - <td class="align"><?php echo T_("Ampache Database User Password"); ?></td> - <td><input type="password" id="db_password" name="db_password" value="" /></td> + <td class="align"><?php echo T_("Ampache Database User Password"); ?></td> + <td><input type="password" id="db_password" name="db_password" value="" /></td> </tr> <tr> - <td class="align"><?php echo T_('Overwrite Existing'); ?></td> - <td><input type="checkbox" name="overwrite_db" value="1" /></td> + <td class="align"><?php echo T_('Overwrite Existing'); ?></td> + <td><input type="checkbox" name="overwrite_db" value="1" /></td> </tr> <tr> - <td class="align"><?php echo T_('Use Existing Database'); ?></td> - <td><input type="checkbox" name="existing_db" value="1" /></td> + <td class="align"><?php echo T_('Use Existing Database'); ?></td> + <td><input type="checkbox" name="existing_db" value="1" /></td> </tr> <tr> - <td> </td> - <td><input type="submit" value="<?php echo T_("Insert Database"); ?>" /></td> + <td> </td> + <td><input type="submit" value="<?php echo T_("Insert Database"); ?>" /></td> </tr> </table> </form> <script type="text/javascript">flipField('db_username');flipField('db_password');</script> - </div> - <div id="bottom"> - <p><strong>Ampache Installation.</strong><br /> - Pour l'Amour de la Musique</p> + </div> + <div id="bottom"> + <p><strong>Ampache Installation.</strong><br /> + Pour l'Amour de la Musique</p> </div> </div> |