Update Icon and wording

This commit is contained in:
johnnyq
2024-02-05 21:12:32 -05:00
parent dc69101624
commit 6f6b56dcfd
2 changed files with 2 additions and 3 deletions

View File

@@ -52,13 +52,12 @@ $key = randomString(156);
</div> </div>
<div class="form-group"> <div class="form-group">
<label>Client <strong class="text-danger">*</strong></label> <label>Client Access <strong class="text-danger">*</strong></label>
<div class="input-group"> <div class="input-group">
<div class="input-group-prepend"> <div class="input-group-prepend">
<span class="input-group-text"><i class="fa fa-fw fa-user"></i></span> <span class="input-group-text"><i class="fa fa-fw fa-user"></i></span>
</div> </div>
<select class="form-control select2" name="client" required> <select class="form-control select2" name="client" required>
<option value="">- Client -</option>
<option value="0"> ALL CLIENTS </option> <option value="0"> ALL CLIENTS </option>
<?php <?php
$sql = mysqli_query($mysqli, "SELECT * FROM clients ORDER BY client_name ASC"); $sql = mysqli_query($mysqli, "SELECT * FROM clients ORDER BY client_name ASC");

View File

@@ -37,7 +37,7 @@ require_once "inc_all_settings.php";
<label>Secret key</label> <label>Secret key</label>
<div class="input-group"> <div class="input-group">
<div class="input-group-prepend"> <div class="input-group-prepend">
<span class="input-group-text"><i class="fa fa-fw fa-lock"></i></span> <span class="input-group-text"><i class="fa fa-fw fa-key"></i></span>
</div> </div>
<input type="text" class="form-control" name="config_stripe_secret" placeholder="Stripe Secret API Key (sk_...)" value="<?php echo nullable_htmlentities($config_stripe_secret); ?>"> <input type="text" class="form-control" name="config_stripe_secret" placeholder="Stripe Secret API Key (sk_...)" value="<?php echo nullable_htmlentities($config_stripe_secret); ?>">
</div> </div>