forked from MarkusAllen/phpSecureLogin
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsecurePage.html
More file actions
32 lines (25 loc) · 1 KB
/
securePage.html
File metadata and controls
32 lines (25 loc) · 1 KB
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" />
<script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
<!-- scripts-->
<script src="js/general.js"></script>
<script type="text/JavaScript" src="js/securePage.js"></script>
</head>
<body>
<div data-role="page">
<div data-role="header">
<h1>Welcome To My secure page</h1>
<button onclick="processLogout();" id='btn-logout'>Logout</button>
</div>
<div data-role="main" class="ui-content">
<button onclick="activeLoginSession();" id='check'>Trigger other API request</button>
<h2 id="secureResponse"></h2>
</div>
</div>
</body>
</html>