mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 10:54:52 +00:00
Updated Vendors added description and account number removed address phone email
This commit is contained in:
@@ -8,43 +8,24 @@
|
||||
</button>
|
||||
</div>
|
||||
<form action="post.php" method="post" autocomplete="off">
|
||||
<input type="hidden" name="vendor_id" value="<?php echo $vendor_id; ?>">
|
||||
<div class="modal-body">
|
||||
<div class="form-group">
|
||||
<label>Name</label>
|
||||
<input type="text" class="form-control" name="name" value="<?php echo "$vendor_name"; ?>" required>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>Phone</label>
|
||||
<input type="text" class="form-control" name="phone" data-inputmask="'mask': '999-999-9999'" value="<?php echo "$vendor_phone"; ?>" required>
|
||||
<label>Description</label>
|
||||
<input type="text" class="form-control" name="description" value="<?php echo $vendor_description; ?>" required>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>Email</label>
|
||||
<input type="email" class="form-control" name="email" value="<?php echo "$vendor_email"; ?>">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>Website</label>
|
||||
<input type="text" class="form-control" name="website" value="<?php echo "$vendor_website"; ?>">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>Address</label>
|
||||
<input type="text" class="form-control" name="address" value="<?php echo "$vendor_address"; ?>">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>City</label>
|
||||
<input type="text" class="form-control" name="city" value="<?php echo "$vendor_city"; ?>">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>State</label>
|
||||
<input type="text" class="form-control" name="state" value="<?php echo "$vendor_state"; ?>">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>Zip</label>
|
||||
<input type="text" class="form-control" name="zip" value="<?php echo "$vendor_zip"; ?>">
|
||||
<label>Account Number</label>
|
||||
<input type="text" class="form-control" name="account_number" value="<?php echo $vendor_account_number; ?>">
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-secondary" data-dismiss="modal">Cancel</button>
|
||||
<button type="submit" name="_vendor" class="btn btn-primary">Save</button>
|
||||
<button type="submit" name="edit_vendor" class="btn btn-primary">Save</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user