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

100 lines
3.1 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign Up - 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;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.signup-container {
background-color: #FFFFFF;
padding: 3rem;
border-radius: 0.5rem;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
width: 100%;
max-width: 450px;
text-align: center;
}
.signup-container h1 {
font-size: 2rem;
font-weight: 700;
color: #2E8B57;
margin-bottom: 2rem;
}
.form-group {
margin-bottom: 1.5rem;
text-align: left;
}
.form-group label {
display: block;
margin-bottom: 0.5rem;
font-weight: 600;
}
.form-group input {
width: 100%;
padding: 0.75rem;
border: 1px solid #ccc;
border-radius: 0.25rem;
font-size: 1rem;
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 {
margin-top: 1.5rem;
font-size: 0.9rem;
}
.login-link a {
color: #2E8B57;
font-weight: 600;
text-decoration: none;
}
</style>
</head>
<body>
<div class="signup-container">
<h1>Create Your Account</h1>
<form action="customer_signup_handler.php" method="POST">
<div class="form-group">
<label for="name">Full Name</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="email">Email Address</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" minlength="8" required>
</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>