mirror of https://github.com/itflow-org/itflow
Add Confirm Modal to Accept Decline Quote
This commit is contained in:
parent
857b5d1bfd
commit
985593b7c2
|
|
@ -171,10 +171,10 @@ if (isset($_GET['quote_id'])) {
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
|
||||||
<?php if ($quote_status == 'Sent' || $quote_status == 'Viewed') { ?>
|
<?php if ($quote_status == 'Sent' || $quote_status == 'Viewed') { ?>
|
||||||
<a class="btn btn-primary" href="post.php?accept_quote=<?php echo $quote_id; ?>">
|
<a class="btn btn-primary confirm-link" href="post.php?accept_quote=<?php echo $quote_id; ?>">
|
||||||
<i class="fas fa-thumbs-up mr-2"></i>Accept
|
<i class="fas fa-thumbs-up mr-2"></i>Accept
|
||||||
</a>
|
</a>
|
||||||
<a class="btn btn-default" href="post.php?decline_quote=<?php echo $quote_id; ?>">
|
<a class="btn btn-default confirm-link" href="post.php?decline_quote=<?php echo $quote_id; ?>">
|
||||||
<i class="fas fa-thumbs-down mr-2"></i>Decline
|
<i class="fas fa-thumbs-down mr-2"></i>Decline
|
||||||
</a>
|
</a>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue