Lowercase some text on the front page, rename submit button on create party page, add a space before GMT, fix CSS selection issue with iCal icon, and add missing file.

This commit is contained in:
reed%reedloden.com 2006-10-11 02:04:36 +00:00
Родитель 863be813a3
Коммит 8393c2477b
5 изменённых файлов: 11 добавлений и 11 удалений

Просмотреть файл

Просмотреть файл

@ -10,19 +10,19 @@
</div>
<div id="f-right">
<div class="cbox">
<span class="ctxt"><?php echo $pcount."</span><br/>".(($pcount == 1) ? ' Party' : ' Parties'); ?>
<span class="ctxt"><?php echo $pcount."</span><br/>".(($pcount == 1) ? ' party' : ' parties'); ?>
<div class="ifeed">
<a style="padding-right: 2px;" title="Party Calendar" href="<?php echo $html->url('/feeds/ical'); ?>"><img src="<?php echo $html->url('/img/ical.png'); ?>" alt="iCAL"/></a><a title="Party Count Feed" href="<?php echo $html->url('/feeds/'); ?>"><img src="<?php echo $html->url('/img/feed16.png'); ?>" alt="RSS"/></a>
</div>
</div>
<div class="cbox">
<span class="ctxt"><?php echo $ucount."</span><br/>".(($ucount == 1) ? ' Partygoer' : ' Partygoers'); ?>
<span class="ctxt"><?php echo $ucount."</span><br/>".(($ucount == 1) ? ' partygoer' : ' partygoers'); ?>
<div class="cfeed">
<a title="User Count Feed" href="<?php echo $html->url('/feeds/users/'); ?>"><img src="<?php echo $html->url('/img/feed16.png'); ?>" alt="RSS"/></a>
</div>
</div>
<div class="cbox">
<span class="ctxt"><?php echo $days_left."</span><br/>".(($days_left == 1) ? ' Day' : ' Days'); ?> left until Firefox 2!
<span class="ctxt"><?php echo $days_left."</span><br/>".(($days_left == 1) ? ' day' : ' days'); ?> left until Firefox 2!
</div>
</div>
<div style="clear: both"></div>
<div style="clear: both"></div>

Просмотреть файл

@ -68,7 +68,7 @@
<label for="PartyWebsite" class="label-large">Web site:</label>
<?php echo $html->input('Party/website', array('size' => 40)); ?>
</div>
<p>If you choose to make your party invite only, you will have to send guests an invite containing a random invite code to allow them to join your party.</p>
<p>If you choose to make your party invite only, you will have to send guests an invite containing a random invite code to allow them to join your party.</p>
<div>
<label for="PartyInviteonly" class="label-large">Invite only</label>
<?php echo $html->checkbox('Party/inviteonly'); ?>
@ -103,5 +103,5 @@
<label for="PartyNotes" class="label-large">Additional Notes</label>
<?php echo $html->textarea('Party/notes', array('rows' => 10, 'cols' => 50)); ?>
</div>
<?php echo $html->submit('Register'); ?>
</form>
<?php echo $html->submit('Create Party'); ?>
</form>

Просмотреть файл

@ -49,7 +49,7 @@
'12' => 'GMT+12');
echo $html->selectTag('User/tz', $tzs, $utz, null, null, false);
?>
(current time is <?php echo gmdate("Y-m-d H:i:s"); ?>GMT)
(current time is <?php echo gmdate("Y-m-d H:i:s"); ?> GMT)
</div>
<?php if(GMAP_API_KEY != null): ?>
<script src="http://maps.google.com/maps?file=api&amp;v=2&amp;key=<?php echo GMAP_API_KEY; ?>"
@ -96,4 +96,4 @@
<?php echo $html->tagErrorMsg('User/confpassword', 'The supplied passwords do not match!')?>
</div>
<?php echo $html->submit('Update'); ?>
</form>
</form>

Просмотреть файл

@ -59,7 +59,7 @@
bottom: 15px;
float: right;
height: 16px;
width: 34px;
width: 16px;
}
.required { color: red; font-weight: bold;}
@ -222,4 +222,4 @@ a:hover { text-decoration: underline; }
#map {
border: 1px solid #555;
}
}