mirror of https://github.com/itflow-org/itflow
59 lines
3.2 KiB
PHP
59 lines
3.2 KiB
PHP
<div class="modal" id="addPaymentMethodModal" tabindex="-1">
|
|
<div class="modal-dialog">
|
|
<div class="modal-content bg-dark">
|
|
<div class="modal-header">
|
|
<h5 class="modal-title"><i class="fa fa-fw fa-credit-card mr-2"></i>Creating: <strong>Payment Method</strong></h5>
|
|
<button type="button" class="close text-white" data-dismiss="modal">
|
|
<span>×</span>
|
|
</button>
|
|
</div>
|
|
<form action="post.php" method="post" autocomplete="off">
|
|
<input type="hidden" name="csrf_token" value="<?php echo $_SESSION['csrf_token'] ?>">
|
|
|
|
<div class="modal-body bg-white">
|
|
|
|
<div class="form-group">
|
|
<label>Name <strong class="text-danger">*</strong></label>
|
|
<div class="input-group">
|
|
<div class="input-group-prepend">
|
|
<span class="input-group-text"><i class="fa fa-fw fa-credit-card"></i></span>
|
|
</div>
|
|
<input type="text" class="form-control" name="name" placeholder="Payment method name" maxlength="200" required autofocus>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<textarea class="form-control" rows="3" name="description" placeholder="Enter a description..."></textarea>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label>Payment Provider</label>
|
|
<div class="input-group">
|
|
<div class="input-group-prepend">
|
|
<span class="input-group-text"><i class="fa fa-fw fa-globe-americas"></i></span>
|
|
</div>
|
|
<select class="form-control select2" name="provider">
|
|
<option value="">- Select a Payment Provider -</option>
|
|
<?php
|
|
$sql_payment_providers = mysqli_query($mysqli, "SELECT * FROM payment_providers");
|
|
while ($row = mysqli_fetch_array($sql_payment_providers)) {
|
|
$payment_provider_id = intval($row['payment_provider_id']);
|
|
$payment_provider_name = nullable_htmlentities($row['payment_provider_name']);
|
|
|
|
?>
|
|
<option value="<?php echo $payment_provider_id; ?>"><?php echo $payment_provider_name; ?></option>
|
|
<?php } ?>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
<div class="modal-footer bg-white">
|
|
<button type="submit" name="add_payment_method" class="btn btn-primary text-bold"><i class="fa fa-check mr-2"></i>Create</button>
|
|
<button type="button" class="btn btn-light" data-dismiss="modal"><i class="fa fa-times mr-2"></i>Cancel</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|