-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDialogDelete.php
22 lines (22 loc) · 1.32 KB
/
DialogDelete.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<div class="modal fade" id="DeleteProduct<?php echo $id ?>" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title font-weight-bold" id="exampleModalLongTitle">Delete Product</h4>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true" style="font-size: 30px;">×</span>
</button>
</div>
<div class="modal-body">
<p class="text-left font-weight-bold" style="font-size: 20px;">Bạn có muốn xóa sản phẩm này không ?</p>
<form action="back/DeleteProductProcess.php" method="POST">
<input type="hidden" name="ProductID" value="<?php echo $row["ProductID"] ?>">
<div class="modal-footer">
<button type="button" class="btn btn-secondary font-weight-bold" data-dismiss="modal">Đóng</button>
<button type="submit" class="btn btn-primary pl-4 pr-4 font-weight-bold">Xóa</button>
</div>
</form>
</div>
</div>
</div>
</div>