34968-vm/restaurant_signup.php
Flatlogic Bot 727b6fcf29 V10
2025-10-15 04:02:50 +00:00

43 lines
1.7 KiB
PHP

<?php include 'header.php'; ?>
<main>
<div class="auth-container">
<h1>Create a Restaurant Account</h1>
<p>Sign up to list your restaurant on our platform.</p>
<form action="restaurant_signup_process.php" method="POST">
<div class="form-group">
<label for="name">Your Name</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" id="password" name="password" required>
</div>
<hr>
<h3>Restaurant Details</h3>
<div class="form-group">
<label for="restaurant_name">Restaurant Name</label>
<input type="text" id="restaurant_name" name="restaurant_name" required>
</div>
<div class="form-group">
<label for="restaurant_address">Restaurant Address</label>
<input type="text" id="restaurant_address" name="restaurant_address" required>
</div>
<div class="form-group">
<label for="restaurant_phone">Restaurant Phone</label>
<input type="text" id="restaurant_phone" name="restaurant_phone" required>
</div>
<button type="submit" class="btn-submit">Sign Up</button>
</form>
<div class="form-footer">
<p>Already have an account? <a href="restaurant_login.php">Log in</a></p>
</div>
</div>
</main>
<?php include 'footer.php'; ?>