-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgoogleaccess.php
More file actions
42 lines (22 loc) · 753 Bytes
/
Copy pathgoogleaccess.php
File metadata and controls
42 lines (22 loc) · 753 Bytes
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
<html>
<body>
<?php if($_SESSION['fb_id']) {?>
<div class = "container">
<div class = "jumbotron">
<h1>Hello <?php echo $_GET['nm']; ?></h1>
<p>Welcome to Google Login App</p>
</div>
<ul class = "nav nav-list">
<h4>ID</h4>
<li><?php echo $_GET['id']; ?></li>
<h4>Fullname</h4>
<li><?php echo $_GET['nm']; ?></li>
<h4>Email</h4>
<li><?php echo $_GET['ml']; ?></li>
<h4>Token</h4>
<li><?php echo $_GET['tk']; ?></li>
</ul>
</div>
<?php } ?>
</body>
</html>