| Server IP : 173.209.174.21 / Your IP : 216.73.216.89 Web Server : Apache/2.4.58 (Ubuntu) System : Linux wcfs-server 6.8.0-124-generic #124-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 13:00:45 UTC 2026 x86_64 User : nodor ( 1000) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/thelittlebigshow/vendor-reg/backup files/ |
Upload File : |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vendor Registration</title>
</head>
<body>
<h2>Vendor Registration Form</h2>
<form action="hold_harmless.php" method="POST">
<!-- Name Field -->
<label for="name">Full Name:</label>
<input type="text" id="name" name="name" required><br>
<!-- Email Field -->
<label for="email">Email Address:</label>
<input type="email" id="email" name="email" required><br>
<!-- Phone Number Field -->
<label for="phone">Phone Number:</label>
<input type="tel" id="phone" name="phone" required><br>
<!-- Address Fields -->
<label for="address">Address:</label><br>
<input type="text" id="address" name="address" placeholder="Street Address" required><br>
<input type="text" id="city" name="city" placeholder="City" required><br>
<input type="text" id="state" name="state" placeholder="State" required><br>
<input type="text" id="zip" name="zip" placeholder="ZIP Code" required><br>
<!-- Business Name Field -->
<label for="business_name">Business Name:</label>
<input type="text" id="business_name" name="business_name"><br>
<!-- Website Field -->
<label for="website">Website:</label>
<input type="url" id="website" name="website" placeholder="https://example.com"><br>
<!-- Spots Requested Field -->
<label for="spots_requested">Number of Spots:</label>
<input type="number" id="spots_requested" name="spots_requested" min="1" value="1"><br>
<!-- Description of Products/Services -->
<label for="products">What You Sell:</label>
<textarea id="products" name="products" rows="4" placeholder="Describe what you sell..." required></textarea><br>
<!-- Agreement Checkbox -->
<label>
<input type="checkbox" name="agreement" required>
I acknowledge and agree to the <a href="hold_harmless.php" target="_blank">Hold Harmless Agreement</a>.
</label><br>
<!-- Submit Button -->
<button type="submit">Continue to Agreement</button>
</form>
</body>
</html>