-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathp_myaccount.php
92 lines (65 loc) · 2.25 KB
/
p_myaccount.php
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
92
<?php
session_start();
?>
<div class="col-4">
<span class = "home">
<h2>Options</h2>
<hr>
<?php require('include_menu.php'); ?>
<br>
<h2>Your Profile</h2>
<hr>
Username: <?php echo $_SESSION['username']; ?><br>
Age: <span id="dob">19 (6/12/18)</span><br>
<br>
<h2>Stats</h2>
<hr>
Max Friends: <span id="maxfriends">3</span><br>
<!--Upgrade!<br><br>-->
<!--Listing Priority: +<span id="listingboost">0</span><br>-->
<!--Upgrade!<br><br>-->
</span>
</div>
<div class="col-5">
<span class="home">
<h2>Account Settings</h2><hr>
<form id="profileform">
<div class="A1">Chat Preference</div>
<div class="A2 t-right">
<select style="width: 154px;" id="p_preference" class="select">
<option value="m">A Man</option>
<option value="f">A Woman</option>
<option value="a">Anybody</option>
</select>
</div>
<br>
<div class="A1">Interests</div>
<div class="A2 t-right" id="textcount">250</div>
<br class="clear">
<div class="A3"><textarea id="p_interests" name="p_interests" onKeyDown="textCounter(this.form.p_interests);" onKeyUp="textCounter(this.form.p_interests);" class="input"></textarea></div><br>
<div class="A1">Participate in the Lobby</div>
<div class="A2 t-right">
<select style="width: 154px;" id="p_lobby" class="select">
<option value="1">Yes</option>
<option value="0">No</option>
</select>
</div>
<div class="A1">Enable Chat Notifications</div>
<div class="A2 t-right">
<select style="width: 154px;" id="p_chatnotifications" class="select">
<option value="1">Yes</option>
<option value="0">No</option>
</select>
</div>
<br>
<div class="A3 t-right"><button class="button">Save</button></div>
</form>
<br>
<h2>About Settings</h2><hr>
Your 'interests' will be displayed to other users on this site. Please use this feature to tell other users
about yourself, what you are here for and what you'd like to chat about.<br><br>
Participating in the lobby will allow other users (even those you are not friends with) to see that you are online.
This will also signal that you wish to receive chat requests.<br><br>
<br><br>
</span>
</div>