diff options
author | Michael Francis <edude03@gmail.com> | 2011-06-20 22:11:47 -0400 |
---|---|---|
committer | Michael Francis <edude03@gmail.com> | 2011-06-20 22:11:47 -0400 |
commit | d17d997a5903e6718eacfa10e4395fa9bdc79946 (patch) | |
tree | b7ecb17bc92b9892fdd0a57f82f3db000b56c298 /views/users | |
parent | 45f1b2a052a4abc1d6d730d20c6eea44e7709c7f (diff) | |
download | otakuhub-d17d997a5903e6718eacfa10e4395fa9bdc79946.tar.xz |
Changed the typography & fixed the private form
Diffstat (limited to 'views/users')
-rw-r--r-- | views/users/settings.html.php | 47 |
1 files changed, 24 insertions, 23 deletions
diff --git a/views/users/settings.html.php b/views/users/settings.html.php index 6f65786..7c26084 100644 --- a/views/users/settings.html.php +++ b/views/users/settings.html.php @@ -1,44 +1,48 @@ -<h2> Settings </h2> - -<div style='float:left'>Name</div><?php if (!isset($user->Name)): ?> <div style='float:right'><a href='#name' rel='prettyPhoto'>Set</a></div><?php endif; ?> -<div style="clear:both" /> +<script type = "text/javascript"> +function subForm() { + $("#private").submit(); +} +</script> +<h2 class="ribbon full"> Settings <span> All your settings in one place</span></h2> +<div class="triangle-ribbon"></div> +<br class="cl" /> +<div style='float:left'><h5>Name</h5></div><?php if (!isset($user->Name)): ?> <div style='float:right'><a href='#name' rel='prettyPhoto'>Set</a></div><?php endif; ?> +<div style="clear:both"></div> <hr /> <div style='float:left'>Your real name</div><div style='float:right'><?= isset($user->Name) ? $user->Name : "Not Set"; ?> </div> <br class = "cl"/> <br /> -<div style='float:left'>Username</div><div style='float:right'><a href="#username" rel='prettyPhoto'>Change</a></div> -<div style="clear:both" /> +<div style='float:left'><h5>Username</h5></div><div style='float:right'><a href="#username" rel='prettyPhoto'>Change</a></div> +<div style="clear:both"></div> <hr /> <div style='float:left'>How you're known on the site</div><div style='float:right'><?= $user->username ?> </div> <br class = "cl"/> <br /> -<div style='float:left'>E-Mail Address</div><div style='float:right'><a href="#email" rel="prettyPhoto" >Change</a></div> -<div style="clear:both" /> +<div style='float:left'><h5>E-Mail Address</h5></div><div style='float:right'><a href="#email" rel="prettyPhoto" >Change</a></div> +<div style="clear:both" ></div> <hr /> <div style='float:left'>The Address we'll contact you at</div><div style='float:right'><?= isset($user->email) ? $user->email : "Not Set"; ?> </div> <br class = "cl"/> <br /> -<div style='float:left'>Password</div><div style='float:right'><a href="#password" rel="prettyPhoto">Change</a></div> -<div style="clear:both" /> +<div style='float:left'><h5>Password</h5></div><div style='float:right'><a href="#password" rel="prettyPhoto">Change</a></div> +<div style="clear:both"></div> <hr /> <div style='float:left'>The password you login with</div> <br class = "cl"/> <br /> <?php //Eventually change this to submit onClick with javascript so we can get rid of the submit button :TODO: ?> -<?= $this->form->create($user->settings); ?> -<div style='float:left'>Privacy Mode</div> -<div style="clear:both" /> +<?= $this->form->create(null, array('id' => 'private')); ?> +<div style='float:left'><h5>Privacy Mode</h5></div> +<div style="clear:both" ></div> <hr /> -<div style='float:left'>Only allow friends to see your posts?</div><div style='float:right'><?= $this->form->checkbox('private'); ?> </div> - </div> - <?= $this->form->submit('Save Settings'); ?> +<div style='float:left'>Only allow friends to see your posts?</div><div style='float:right'><?= $this->form->checkbox('private', array('id' => 'checkPriv', 'checked' => ($user->private) ? "true" : "false", 'style' => 'width:20px', 'onclick' => '' )); ?> </div> <?= $this->form->end(); ?> <br class = "cl"/> <br /> -<div style='float:left'>Linked Accounts</div><div style='float:right'>Change</div> -<div style="clear:both" /> +<div style='float:left'><h5>Linked Accounts</h5></div><div style='float:right'>Change</div> +<div style="clear:both"></div> <hr /> <div style='float:left'>Your OpenID</div><div style='float:right'>Not Set</div> <br class = "cl"/> @@ -76,8 +80,5 @@ </div> -<div style="clear:both" /> -</div> -</div> -<br class="cl"> -</div>
\ No newline at end of file +<div style="clear:both"></div> +<br class="cl">
\ No newline at end of file |