mirror of https://github.com/itflow-org/itflow
44 lines
1.6 KiB
PHP
44 lines
1.6 KiB
PHP
<?php include("header.php"); ?>
|
|
|
|
<?php include("settings-nav.php"); ?>
|
|
|
|
<div class="card">
|
|
<div class="card-header bg-dark text-white">
|
|
<h6 class="float-left mt-1"><i class="fa fa-fw fa-file mr-2"></i>Quote Settings</h6>
|
|
</div>
|
|
<div class="card-body">
|
|
<form class="p-3" action="post.php" method="post" autocomplete="off">
|
|
|
|
<div class="form-group">
|
|
<label>Quote Prefix</label>
|
|
<div class="input-group">
|
|
<div class="input-group-prepend">
|
|
<span class="input-group-text"><i class="fa fa-fw fa-barcode"></i></span>
|
|
</div>
|
|
<input type="text" class="form-control" name="config_quote_prefix" placeholder="Quote Prefix" value="<?php echo $config_quote_prefix; ?>" required>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label>Next Number</label>
|
|
<div class="input-group">
|
|
<div class="input-group-prepend">
|
|
<span class="input-group-text"><i class="fa fa-fw fa-barcode"></i></span>
|
|
</div>
|
|
<input type="number" min="0" class="form-control" name="config_quote_next_number" placeholder="Next Quote Number" value="<?php echo $config_quote_next_number; ?>" required>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group mb-5">
|
|
<label>Quote Footer</label>
|
|
<textarea class="form-control" rows="4" name="config_quote_footer"><?php echo $config_quote_footer; ?></textarea>
|
|
</div>
|
|
|
|
<hr>
|
|
<button type="submit" name="edit_quote_settings" class="btn btn-primary">Save</button>
|
|
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
<?php include("footer.php");
|