diff options
Diffstat (limited to 'templates/show_install_account.inc.php')
-rw-r--r-- | templates/show_install_account.inc.php | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/templates/show_install_account.inc.php b/templates/show_install_account.inc.php index 86c5b770..e3a0a0d1 100644 --- a/templates/show_install_account.inc.php +++ b/templates/show_install_account.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,40 +23,40 @@ $prefix = realpath(dirname(__FILE__). "/../"); require $prefix . '/templates/install_header.inc.php'; ?> - <div class="content"> - <?php echo T_('Step 1 - Create the Ampache database'); ?><br /> - <?php echo T_('Step 2 - Create ampache.cfg.php'); ?><br /> - <strong><?php echo T_('Step 3 - Set up the initial account'); ?></strong><br /> - <dl> - <dd><?php echo T_('This step creates your initial Ampache admin account. Once your admin account has been created you will be redirected to the login page.'); ?></dd> - </dl> - <?php Error::display('general'); ?> - <br /> - <span class="header2"><?php echo T_('Create Admin Account'); ?></span> - <form method="post" action="<?php echo WEB_PATH . "?action=create_account&htmllang=$htmllang&charset=$charset"; ?>" enctype="multipart/form-data" > + <div class="content"> + <?php echo T_('Step 1 - Create the Ampache database'); ?><br /> + <?php echo T_('Step 2 - Create ampache.cfg.php'); ?><br /> + <strong><?php echo T_('Step 3 - Set up the initial account'); ?></strong><br /> + <dl> + <dd><?php echo T_('This step creates your initial Ampache admin account. Once your admin account has been created you will be redirected to the login page.'); ?></dd> + </dl> + <?php Error::display('general'); ?> + <br /> + <span class="header2"><?php echo T_('Create Admin Account'); ?></span> + <form method="post" action="<?php echo WEB_PATH . "?action=create_account&htmllang=$htmllang&charset=$charset"; ?>" enctype="multipart/form-data" > <table> <tr> - <td class="align"><?php echo T_('Username'); ?></td> - <td><input type="text" name="local_username" value="admin" /></td> + <td class="align"><?php echo T_('Username'); ?></td> + <td><input type="text" name="local_username" value="admin" /></td> </tr> <tr> - <td class="align"><?php echo T_('Password'); ?></td> - <td><input type="password" name="local_pass" value="" /></td> + <td class="align"><?php echo T_('Password'); ?></td> + <td><input type="password" name="local_pass" value="" /></td> </tr> <tr> - <td class="align"><?php echo T_('Confirm Password'); ?></td> - <td><input type="password" name="local_pass2" value="" /></td> + <td class="align"><?php echo T_('Confirm Password'); ?></td> + <td><input type="password" name="local_pass2" value="" /></td> </tr> <tr> - <td> </td> - <td><input type="submit" value="<?php echo T_('Create Account'); ?>" /></td> + <td> </td> + <td><input type="submit" value="<?php echo T_('Create Account'); ?>" /></td> </tr> - </table> - </form> - </div> - <div id="bottom"> - <p><strong>Ampache Installation.</strong><br /> - For the love of Music.</p> + </table> + </form> + </div> + <div id="bottom"> + <p><strong>Ampache Installation.</strong><br /> + For the love of Music.</p> </div> </div> |