-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdisplayUserInfo.html
132 lines (121 loc) · 6.2 KB
/
displayUserInfo.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="msapplication-tap-highlight" content="no" />
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width" />
<!-- This is a wide open CSP declaration. To lock this down for production, see below. -->
<meta http-equiv="Content-Security-Policy" content="default-src * 'unsafe-inline'; style-src 'self' 'unsafe-inline'; media-src *" />
<!-- Good default declaration:
* gap: is required only on iOS (when using UIWebView) and is needed for JS->native communication
* https://ssl.gstatic.com is required only on Android and is needed for TalkBack to function properly
* Disables use of eval() and inline scripts in order to mitigate risk of XSS vulnerabilities. To change this:
* Enable inline JS: add 'unsafe-inline' to default-src
* Enable eval(): add 'unsafe-eval' to default-src
* Create your own at http://cspisawesome.com
-->
<!-- <meta http-equiv="Content-Security-Policy" content="default-src 'self' data: gap: 'unsafe-inline' https://ssl.gstatic.com; style-src 'self' 'unsafe-inline'; media-src *" /> -->
<title>School One</title>
<link rel="stylesheet" type="text/css" href="w3css/4/w3.css">
<link rel="stylesheet" href="ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style type="text/css">
@media screen and (max-width: 455px) {
.h3 {
font-size:16px;
}
body {
font-size:10px;
}
}
</style>
<script type="text/javascript">
var url = window.location.pathname;
var filename = url.substring(url.lastIndexOf('/')+1);
if(localStorage.a_login=="true" && filename == 'login.html'){
window.location.href = "dashboard.html";
} else if (localStorage.a_login == null) {
window.location.href = "login.html";
}else if(localStorage.a_login=="false" && filename != 'login.html'){
window.location.href = "login.html";
}
</script>
</head>
<body>
<!-- Sidebar -->
<div class="w3-sidebar w3-light-grey w3-card-4 w3-animate-left" style="display:none;width:250px;" id="mySidebar">
<div id="menu">
</div>
<div class="w3-bar-block">
<a id="a_logout" class="w3-bar-item w3-button" href="javascript:;"><i class="fa fa-power-off"></i> Logout</a>
</div>
</div>
<!-- Page Content -->
<div id="main">
<div class="w3-green w3-display-container">
<button class="w3-button w3-green w3-xlarge" id="openNav" onclick="w3_open()"><i class="fa fa-bars"></i></button>
<div class="w3-container">
<img src="img/logo_white.png" style="width: 52px;height: 52px;margin-right:20px;" class="w3-right w3-margin-bottom">
<h1 class="h3" style="float: left;">User Details</h1>
</div>
</div>
</div>
<img src="img/sub_page_bg.jpg" alt="bg" style="width:100%;border-bottom: 5px solid #4CAF50 !important;">
<ul class="w3-ul w3-card-4">
<li class="w3-bar w3-light-grey" style="border-bottom: 3px solid #4CAF50 !important;"><a href="javascript: history.go(-1)" class="w3-button w3-green w3-tiny w3-right"><i class="fa fa-chevron-circle-left"></i> Go Back</a></li>
<li class="w3-bar w3-light-grey">
<img id="picture" class="w3-left w3-round" style="width:85px;">
<div class="w3-bar-item">
<span class="w3-small" id="fullName" ></span><br>
<span class="w3-small" id="type"></span><br>
<span class="w3-small" id="role"></span>
</div>
</li>
<li class="w3-bar"><h4><b>Special ID</b></h4><span id="special_id"></span></li>
<li class="w3-bar"><h4><b>Username</b></h4><span id="username"></span></li>
<li class="w3-bar" id="myPhone"><h4><b>Phone Number</b></h4><span id="phone"></span></li>
<li class="w3-bar" id="myPhone2"><h4><b>SMS</b></h4><span id="phone2"></span></li>
<li class="w3-bar" id="myEmail"><h4><b>Email Address</b></h4><span id="email"></span></li>
</ul>
<script type="text/javascript" src="cordova.js"></script>
<script src="ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script type="text/javascript" src="js/sa_auth.js"></script>
<script type="text/javascript" src="js/constant.js"></script>
<script type="text/javascript" src="js/getUrl.js"></script>
<script type="text/javascript" src="js/func.js"></script>
<script>
$(document).ready(function() {
var user_id = decodeURI(getUrlVars()["user_id"]);
var special_id = decodeURI(getUrlVars()["special_id"]);
var username = decodeURI(getUrlVars()["username"]);
var email = decodeURI(getUrlVars()["email"]);
var fname = decodeURI(getUrlVars()["fname"]);
var lname = decodeURI(getUrlVars()["lname"]);
var type = decodeURI(getUrlVars()["type"]);
var role = decodeURI(getUrlVars()["role"]);
var phone = decodeURI(getUrlVars()["phone"]);
var picture = decodeURI(getUrlVars()["picture"]);
$("#user_id").text(user_id);
$('#fullName').text(lname + ' ' + fname);
$('#role').text(role);
$('#type').text(type);
$('#username').text(username);
$('#special_id').text(special_id);
$('#email').text(email);
$('#phone').text(phone);
$('#phone2').text(phone);
$('#type').text(type);
$('#picture').attr('src', 'http://www.alicesons.org/demos/phonegap/schoolone/upload/' + picture);
if (email) {
$('#myEmail').append('<a href="mailto:' + email + '" class="w3-bar-item w3-button w3-right" style="margin-top:-40px;"><img src="img/mail.png"></a>');
}
if (phone) {
$('#myPhone').append('<a href="tel:' + phone + '" class="w3-bar-item w3-button w3-right" style="margin-top:-40px;"><img src="img/phone.png"></a>');
$('#myPhone2').append('<a href="sms:' + phone + '" class="w3-bar-item w3-button w3-right" style="margin-top:-40px;"><img src="img/sms.png"></a>');
}
});
</script>
<div style="margin-bottom: 40px;"></div>
<footer id="footer"></footer>
</body>
</html>