-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsign_out.php
More file actions
30 lines (25 loc) · 1.25 KB
/
sign_out.php
File metadata and controls
30 lines (25 loc) · 1.25 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
<!-- Sign Out Modal -->
<div class="modal fade" id="sign_out">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<!-- Modal header -->
<div class="modal-header">
<h4 class="modal-title">Sign Out</h4>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<!-- Modal body -->
<div class="modal-body">
<div class="modal-text">
<p class="text-center" style="font-size: 1.2rem;
font-family: 'Poppins', sans-serif !important;">Are you sure you want to sign out?</p>
</div>
<form method="POST" action="includes/logout.php" class="">
<div class="form-group d-flex justify-content-between">
<input type="submit" name="submit_yes" id="btn_submit" class="modal-btn btn_yes" value="Yes" style="padding: .8rem 1.5rem">
<input type="submit" name="submit_no" id="btn_submit" class="modal-btn btn_no" value="No" style="padding: .8rem 1.5rem">
</div>
</form>
</div>
</div>
</div>
</div>