-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuserDataModal.php
More file actions
24 lines (23 loc) · 1.1 KB
/
userDataModal.php
File metadata and controls
24 lines (23 loc) · 1.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
<div class="modal fade" id="userDataModal" data-backdrop="static" data-keyboard="false" tabindex="-1" aria-labelledby="userDataModalLabel" aria-hidden="true" style="color: #333;">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="userDataModalLabel">
<div class="fw-300">USER DATA</div>
</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body" >
<p class="h5">Name: <?php echo($_SESSION['userObject']['name']);?></p>
<p class="h5">Email: <?php echo($_SESSION['email']);?></p>
<p class="h5">Role: <?php echo($_SESSION['role']);?></p>
</div>
<div class="modal-footer d-flex justify-content-between">
<a class="btn text-warning" ng-click="replaceCard(cards.indexOf(activeCard))" style="width: 45%;" href="logout.php">LOGOUT</a>
<button type="button" class="btn text-secondary" style="width: 45%;" data-dismiss="modal" >DONE</button>
</div>
</div>
</div>
</div>