1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
<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'><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'><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'><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(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', array('id' => 'checkPriv', 'checked' => ($user->private) ? "true" : "false", 'style' => 'width:20px', 'onclick' => '' )); ?> </div>
<?= $this->form->end(); ?>
<br class = "cl"/>
<br />
<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"/>
<br />
<div style='float:left'><h5>Export my Data</h5></div><div style='float:right'><a href="#email" rel="prettyPhoto" >Manage</a></div>
<div style="clear:both" ></div>
<hr />
<div style='float:left'>Download all the dirt we have on you</div><div style='float:right'> </div>
<br class = "cl"/>
<br />
<div id="password" style="display: none;">
<h2> Change Password </h2>
<?= $this->form->create(null, array('url' => '/users/changePassword', 'id' => 'changepass')); ?>
<?= $this->form->field('newpass', array('type' => 'password', 'label' => 'New Password:')); ?>
<?= $this->form->field('confirm', array('type' => 'password', 'label' => 'Confirm Password:')); ?>
<?= $this->form->submit('Change Password'); ?>
<?= $this->form->end(); ?>
</div>
<div id="username" style="display: none;">
<h2> Change Username </h2>
<p> Under normal circumstances, the username cannot be changed. However, if you really need to change your username
please contact our administration team for assistance. Thank you</p>
</div>
<div id="name" style="display: none;">
<h2> Change Name </h2>
<?= $this->form->create(); ?>
<?= $this->form->field('Name', array('type' => 'textbox')); ?>
<?= $this->form->submit('Save'); ?>
<?= $this->form->end(); ?>
</div>
<div id="email" style="display: none;">
<h2> Change Name </h2>
<?= $this->form->create(); ?>
<?= $this->form->field('email', array('type' => 'textbox', 'label' => 'E-Mail Address:')); ?>
<?= $this->form->submit('Save'); ?>
<?= $this->form->end(); ?>
</div>
<div style="clear:both"></div>
<br class="cl">
|