<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SHOP REG - OPTI SLIP</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
background: #10b981;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
}
.container {
max-width: 500px;
width: 100%;
padding: 0 20px;
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 40px;
}
.page-title {
color: white;
font-size: 24px;
font-weight: bold;
}
.back-btn {
color: white;
font-size: 24px;
text-decoration: none;
transition: all 0.3s ease;
}
.back-btn:hover {
color: #f0f0f0;
transform: translateX(-5px);
}
.main-card {
background: white;
border-radius: 20px;
padding: 50px 40px;
text-align: center;
box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.logo-container {
margin-bottom: 40px;
}
.logo {
width: 80px;
height: 80px;
background: #10b981;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
}
.logo-icon {
font-size: 40px;
color: white;
}
.logo-text {
color: #1f2937;
font-size: 24px;
font-weight: bold;
letter-spacing: 2px;
}
.description {
color: #6b7280;
font-size: 14px;
line-height: 1.6;
margin-bottom: 40px;
}
.form-group {
margin-bottom: 30px;
text-align: left;
}
.form-label {
color: #374151;
font-weight: 500;
margin-bottom: 8px;
display: block;
}
.form-control {
width: 100%;
padding: 15px 20px;
border: 2px solid #e5e7eb;
border-radius: 12px;
font-size: 16px;
transition: all 0.3s ease;
}
.form-control:focus {
outline: none;
border-color: #10b981;
box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}
.btn-verify {
width: 100%;
background: #10b981;
color: white;
border: none;
padding: 15px;
border-radius: 12px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
margin-bottom: 20px;
}
.btn-verify:hover {
background: #059669;
transform: translateY(-2px);
}
.back-link {
color: #6b7280;
text-decoration: none;
font-size: 14px;
display: inline-block;
margin-bottom: 30px;
}
.back-link:hover {
color: #10b981;
text-decoration: underline;
}
.divider {
text-align: center;
margin: 30px 0;
position: relative;
}
.divider::before {
content: '';
position: absolute;
top: 50%;
left: 0;
right: 0;
height: 1px;
background: #e5e7eb;
}
.divider span {
background: white;
padding: 0 20px;
color: #6b7280;
font-size: 14px;
}
.social-buttons {
display: flex;
flex-direction: column;
gap: 15px;
}
.btn-social {
width: 100%;
padding: 15px;
border: 2px solid #3b82f6;
background: white;
color: #3b82f6;
border-radius: 12px;
font-size: 16px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
}
.btn-social:hover {
background: #3b82f6;
color: white;
}
.btn-facebook {
border-color: #1877f2;
color: #1877f2;
}
.btn-facebook:hover {
background: #1877f2;
color: white;
}
</style>
</head>
<body>
<div class="container">
<!-- Header -->
<div class="header">
<h1 class="page-title">SHOP REG</h1>
<a href="signin.php" class="back-btn">
<i class="fas fa-arrow-left"></i>
</a>
</div>
<!-- Main Card -->
<div class="main-card">
<div class="logo-container">
<div class="logo">
<i class="fas fa-glasses logo-icon"></i>
</div>
<div class="logo-text">OPTI SLIP</div>
</div>
<p class="description">
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.
</p>
<form method="POST" action="verify-otp.php">
<div class="form-group">
<label class="form-label">Email</label>
<input type="email" name="email" class="form-control" value="Alexander87@hotmail.com" required>
</div>
<button type="submit" class="btn-verify">VERIFY</button>
</form>
<a href="signin.php" class="back-link">Back</a>
<div class="divider">
<span>OR</span>
</div>
<div class="social-buttons">
<button class="btn-social">
<i class="fab fa-google"></i>
Continue with Google
</button>
<button class="btn-social btn-facebook">
<i class="fab fa-facebook-f"></i>
Continue with Facebook
</button>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>