-
Notifications
You must be signed in to change notification settings - Fork 0
/
editAccount.html
145 lines (141 loc) · 7.44 KB
/
editAccount.html
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE HTML>
<html>
<head>
<title>CampusGrids: Account</title>
<meta charset="utf-8" />
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/themes/campus.min.css" />
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.0/jquery.mobile.structure-1.3.0.min.css" />
<link rel="stylesheet" href="css/font-awesome.css" />
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.0/jquery.mobile-1.3.0.min.js"></script>
<script type="text/javascript" src="js/CG.js"></script>
</head>
<body>
<div data-role="page" id="editAccountPage" data-theme="a">
<!-- Header -->
<div data-role="panel" id="menuPanel" data-position="right" data-display="overlay" data-theme="b">
<ul data-role="listview">
<li>
<a href="allClubs.html" data-ajax="false">All Clubs</a>
</li>
<li>
<a href="allEvents.html" data-ajax="false">All Events</a>
</li>
<li>
<a href="findFriends.html" data-ajax="false">Find Friends</a>
</li>
<!--<li>
<a href="promote.html">Promote</a>
</li>-->
<li>
<a href="settings.html" data-ajax="false">Settings</a>
</li>
<li>
<a href="feedback.html" data-ajax="false">Feedback</a>
</li>
<li>
<a href="linkAccounts.html" data-ajax="false">Link Accounts</a>
</li>
</ul>
<!-- <a style="margin-top: 50px;" href="#" data-rel="close" data-role="button" data-icon="delete" data-iconpos="left">Close Menu</a> -->
</div>
<div data-role="header" data-position="fixed" data-tap-toggle="false" data-theme="b">
<img src="img/logo_small.png" class="smallLogo">
<h1 class="headerTitle">Edit Account</h1>
<!-- onclick="document.getElementById('accountForm').submit();" -->
<a href="#" class="headerSubmit" id="submitForm" data-icon="check" data-iconpos="left" >Done</a>
<a id="header" href="#menuPanel" class="ui-btn-right"><i style="font-size: 1.4em;" class="icon-reorder"></i></a>
</div>
<!-- /header -->
<!------------------------------- CONTENT ---------------------------------------------------------->
<div data-role="content" id="content" data-theme="a">
<form id="accountForm" method="post" action="settings.html">
<p style="font-size: 1.2em; padding-left: 3px; padding-top: 8px;">Pick your School:</p>
<fieldset data-role="controlgroup" data-iconpos="right">
<input type="radio" name="networkC" id="radio-networkC-6a" value="Algonquin College" checked="checked" />
<label for="radio-networkC-6a">Algonquin College</label>
<input type="radio" name="networkC" id="radio-networkC-6b" value="Carleton University" />
<label for="radio-networkC-6b">Carleton University</label>
<input type="radio" name="networkC" id="radio-networkC-6c" value="University of Ottawa" />
<label for="radio-networkC-6c">Ottawa University</label>
<input type="radio" name="networkC" id="radio-networkC-6d" value="Ottawa Area" />
<label for="radio-networkC-6d">All</label>
</fieldset>
<p style="font-size: 1.2em; padding-left: 3px; padding-top: 8px;">Personal Information:</p>
<label for="fName" class="ui-hidden-accessible">First Name:</label>
<p id="fNameError" class="error"></p>
<input type="text" name="fName" id="fName" value="" placeholder="First Name" onblur="checkFirstName($('#fName').val(), 'fNameError');">
<label for="lName" class="ui-hidden-accessible">Last Name:</label>
<p id="lNameError" class="error"></p>
<input type="text" name="lName" id="lName" value="" placeholder="Last Name" onblur="checkLastName($('#lName').val(), 'lNameError');">
<label for="emailU" class="ui-hidden-accessible">Email Address:</label>
<p id="emailUError" class="error"></p>
<input type="text" name="emailU" id="emailU" value="" placeholder="Email Address" onblur="checkEmail($('#emailU').val(), 'emailUError');">
<label for="passwordU" class="ui-hidden-accessible">Password:</label>
<p id="passwordUError" class="error"></p>
<input type="password" name="passwordU" id="passwordU" value="" placeholder="Password" onblur="checkPassword($('#passwordU').val(), 'passwordUError');">
</form>
</div>
<!------------------------------- END OF CONTENT ---------------------------------------------------------->
<div data-role="footer" data-position="fixed" id="footer" data-tap-toggle="false">
<div data-role="navbar">
<ul>
<li data-theme="a">
<a href="home.html" data-ajax="false"><i class="icon-home icon-2x"></i></a>
</li>
<li data-theme="a">
<a href="search.html" data-ajax="false"><i class="icon-search icon-2x"></i></a>
</li>
<li data-theme="a">
<a href="calendar.html" data-ajax="false"><i class="icon-calendar icon-2x"></i></a>
</li>
<li data-theme="a">
<a href="profile.html" data-ajax="false"><i class="icon-user icon-2x"></i></a>
</li>
</ul>
</div>
</div>
<!-- /footer -->
</div>
<script>
$("body").css("overflow", "hidden");
$('#search-1').focus(function () {
$('#footer').hide();
});
$('#search-1').blur(function () {
$('#footer').show();
});
</script>
<script type="text/javascript">
$(document).ready(function () {
$.post("editAccount.php", { "func": "retrieveAccount", "gridid": localStorage.gridid },
function (data) {
if (data.status == 0) {
alert("ERROR"); // Retrieve error here...
return false;
}
else {
//Display the retrieved interests (tags)
alert(data.func);
}
}, "json");
});
$('#submitForm').click(function () {
//is(:checked) will return true or false
$.post("editAccount.php", { "func": "updateAccount", "gridid": localStorage.gridid },
function (data) {
if (data.status == 0) {
alert("ERROR"); // Update error here...
return false;
}
else {
alert(data.func);
//window.location = "settings.html";
}
}, "json");
});
</script>
</body>
</html>