summaryrefslogtreecommitdiffstats
path: root/views/users/settings.html.php
blob: 6f6578695864936164ee69c4bfbcd0eec740b1eb (plain)
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
<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" />
<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" />
<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" />
<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" />
<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" />
<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'); ?>
<?= $this->form->end(); ?> 
<br class = "cl"/>
<br />

<div style='float:left'>Linked Accounts</div><div style='float:right'>Change</div>
<div style="clear:both" />
<hr />
<div style='float:left'>Your OpenID</div><div style='float:right'>Not Set</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>
</div>
<br class="cl">
</div>