Rename "Days left until the parties start!" to "Days until we party!" and disable autocomplete on the password fields on the user edit page.

This commit is contained in:
reed%reedloden.com 2006-10-12 04:53:55 +00:00
parent cd05494290
commit 366c179313
2 changed files with 4 additions and 4 deletions

View File

@ -22,7 +22,7 @@
</div>
</div>
<div class="cbox">
<span class="ctxt"><?php echo $days_left."</span><br/>".(($days_left == 1) ? ' Day' : ' Days'); ?> left until the parties start!
<span class="ctxt"><?php echo $days_left."</span><br/>".(($days_left == 1) ? ' Day' : ' Days'); ?> until we party!
</div>
</div>
<div style="clear: both"></div>

View File

@ -88,11 +88,11 @@
<h1>Password</h1>
<div>
<label for="UserPassword" class="label-large">New password:</label>
<?php echo $html->password('User/password', array('size' => 20)); ?>
<?php echo $html->password('User/password', array('size' => 20, 'autocomplete' => 'off')); ?>
</div>
<div>
<label for="UserConfpassword" class="label-large">Confirm new password:</label>
<?php echo $html->password('User/confpassword', array('size' => 20)); ?>
<?php echo $html->password('User/confpassword', array('size' => 20, 'autocomplete' => 'off')); ?>
<?php echo $html->tagErrorMsg('User/confpassword', 'The supplied passwords do not match!')?>
</div>
<?php echo $html->submit('Update'); ?>