34943-vm/restaurant_signup.php
Flatlogic Bot 0fcbb065ea 0001
2025-10-14 03:03:16 +00:00

112 lines
3.7 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Restaurant Signup - MajuroEats</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
<style>
body {
font-family: 'Poppins', sans-serif;
background-color: #F8F9FA;
color: #333;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
}
.signup-container {
background-color: #FFFFFF;
padding: 3rem;
border-radius: 0.5rem;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
width: 100%;
max-width: 500px;
}
.signup-container h1 {
font-size: 2rem;
font-weight: 700;
color: #2E8B57;
text-align: center;
margin-bottom: 2rem;
}
.form-group {
margin-bottom: 1.5rem;
}
.form-group label {
display: block;
margin-bottom: 0.5rem;
font-weight: 600;
color: #333;
}
.form-group input {
width: 100%;
padding: 0.75rem;
border: 1px solid #ccc;
border-radius: 0.5rem;
box-sizing: border-box;
}
.btn-submit {
width: 100%;
padding: 0.75rem;
border: none;
border-radius: 0.5rem;
background-color: #40E0D0;
color: #fff;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: background-color 0.3s ease;
}
.btn-submit:hover {
background-color: #2E8B57;
}
.login-link {
text-align: center;
margin-top: 1.5rem;
}
.login-link a {
color: #2E8B57;
font-weight: 600;
text-decoration: none;
}
</style>
</head>
<body>
<div class="signup-container">
<h1>Become a Partner</h1>
<form action="signup.php" method="POST">
<div class="form-group">
<label for="owner_name">Your Full Name</label>
<input type="text" id="owner_name" name="owner_name" required>
</div>
<div class="form-group">
<label for="email">Your 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 minlength="8">
</div>
<hr style="margin: 2rem 0; border-color: #eee;">
<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_description">Restaurant Description</label>
<textarea id="restaurant_description" name="restaurant_description" rows="3" style="width: 100%; padding: 0.75rem; border: 1px solid #ccc; border-radius: 0.5rem; box-sizing: border-box;"></textarea>
</div>
<button type="submit" class="btn-submit">Sign Up</button>
</form>
<div class="login-link">
<p>Already have an account? <a href="login.php">Log In</a></p>
</div>
</div>
</body>
</html>