diff options
author | Paul Arthur <paul.arthur@flowerysong.com> | 2013-01-26 03:00:32 -0500 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2013-01-26 03:38:46 -0500 |
commit | ef4d3660605efc7f1328d4533b0f4bfb6c1107e2 (patch) | |
tree | e4377fb129a899e65aaaf421f8c97098aecaedd5 /templates/show_user_registration.inc.php | |
parent | 8a750c3e875d590d351c3042570a134fcdf03e5d (diff) | |
download | ampache-ef4d3660605efc7f1328d4533b0f4bfb6c1107e2.tar.gz ampache-ef4d3660605efc7f1328d4533b0f4bfb6c1107e2.tar.bz2 ampache-ef4d3660605efc7f1328d4533b0f4bfb6c1107e2.zip |
Cosmetics: death to tabs
The refactoring I've been doing has reminded me of my strong preference
for spaces, and I feel inclined to impose my will on the tree.
Diffstat (limited to 'templates/show_user_registration.inc.php')
-rw-r--r-- | templates/show_user_registration.inc.php | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/templates/show_user_registration.inc.php b/templates/show_user_registration.inc.php index be9e269e..c0d9284a 100644 --- a/templates/show_user_registration.inc.php +++ b/templates/show_user_registration.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) @@ -56,43 +56,43 @@ if (Config::get('user_agreement')) { ?> <h3><?php echo T_('User Agreement'); ?></h3> <div class="registrationAgreement"> <div class="agreementContent"> - <?php Registration::show_agreement(); ?> + <?php Registration::show_agreement(); ?> </div> <div class="agreementCheckbox"> - <input type='checkbox' name='accept_agreement' /> <?php echo T_('I Accept'); ?> - <?php Error::display('user_agreement'); ?> - </div> + <input type='checkbox' name='accept_agreement' /> <?php echo T_('I Accept'); ?> + <?php Error::display('user_agreement'); ?> + </div> </div> <?php } // end if user_agreement ?> <h3><?php echo T_('User Information'); ?></h3> <div class="registerfield require"> <label for="username"><?php echo T_('Username'); ?>: <span class="asterix">*</span></label> <input type='text' name='username' id='username' value='<?php echo scrub_out($username); ?>' /> - <?php Error::display('username'); ?> - <?php Error::display('duplicate_user'); ?> + <?php Error::display('username'); ?> + <?php Error::display('duplicate_user'); ?> </div> <div class="registerfield require"> - <label for="fullname"><?php echo T_('Full Name'); ?>: <span class="asterix">*</span></label> + <label for="fullname"><?php echo T_('Full Name'); ?>: <span class="asterix">*</span></label> <input type='text' name='fullname' id='fullname' value='<?php echo scrub_out($fullname); ?>' /> - <?php Error::display('fullname'); ?> + <?php Error::display('fullname'); ?> </div> <div class="registerfield require"> <label for="email"><?php echo T_('E-mail'); ?>: <span class="asterix">*</span></label> - <input type='text' name='email' id='email' value='<?php echo scrub_out($email); ?>' /> - <?php Error::display('email'); ?> + <input type='text' name='email' id='email' value='<?php echo scrub_out($email); ?>' /> + <?php Error::display('email'); ?> </div> <div class="registerfield require"> - <label for="password"><?php echo T_('Password'); ?>: <span class="asterix">*</span></label> - <input type='password' name='password_1' id='password_1' /> - <?php Error::display('password'); ?> + <label for="password"><?php echo T_('Password'); ?>: <span class="asterix">*</span></label> + <input type='password' name='password_1' id='password_1' /> + <?php Error::display('password'); ?> </div> <div class="registerfield require"> - <label for="confirm_passord"><?php echo T_('Confirm Password'); ?>: <span class="asterix">*</span></label> - <input type='password' name='password_2' id='password_2' /> + <label for="confirm_passord"><?php echo T_('Confirm Password'); ?>: <span class="asterix">*</span></label> + <input type='password' name='password_2' id='password_2' /> </div> <div class="registerInformation"> @@ -100,13 +100,13 @@ if (Config::get('user_agreement')) { ?> </div> <?php if (Config::get('captcha_public_reg')) { ?> - <?php echo captcha::form("→ "); ?> - <?php Error::display('captcha'); ?> + <?php echo captcha::form("→ "); ?> + <?php Error::display('captcha'); ?> <?php } ?> <div class="registerButtons"> - <input type="hidden" name="action" value="add_user" /> - <input type='submit' name='submit_registration' id='submit_registration' value='<?php echo T_('Register User'); ?>' /> + <input type="hidden" name="action" value="add_user" /> + <input type='submit' name='submit_registration' id='submit_registration' value='<?php echo T_('Register User'); ?>' /> </div> </form> <?php |