33885-vm/index.php
Flatlogic Bot dfa8617644 1.1
2025-09-05 13:06:38 +00:00

168 lines
4.3 KiB
PHP

<?php
declare(strict_types=1);
@ini_set('display_errors', '1');
@error_reporting(E_ALL);
@date_default_timezone_set('UTC');
$phpVersion = PHP_VERSION;
$now = date('Y-m-d H:i:s');
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Horse Riding Club</title>
<link href="https://fonts.cdnfonts.com/css/tiktok-sans" rel="stylesheet">
<style>
:root {
--primary-color: #AC86A8;
--white-color: #ffffff;
--placeholder-color: #cccccc;
}
body {
margin: 0;
font-family: 'TikTok Sans', sans-serif;
font-weight: 300;
color: var(--white-color);
display: flex;
justify-content: flex-start;
align-items: flex-start;
min-height: 100vh;
background-image: url('./assets/pasted-20250904-144312-f8e1c105.jpg');
background-size: cover;
background-position: center;
}
body::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
z-index: 1;
}
.container {
position: relative;
z-index: 2;
max-width: 450px; /* Adjusted for a sleeker look */
width: 100%;
padding: 2rem;
}
.form-panel {
background: transparent;
padding: 2rem;
border-radius: 0;
box-shadow: none;
}
h1 {
font-size: 2.5rem; /* Made title bigger */
font-weight: 700;
margin: 0 0 1rem;
text-align: center;
color: var(--white-color);
}
p.subtitle {
text-align: center;
margin-bottom: 3rem; /* More space */
color: var(--white-color);
font-weight: 300;
}
.form-group {
margin-bottom: 2rem; /* More space */
position: relative;
}
label {
display: block;
margin-bottom: 0.5rem;
font-weight: 400; /* Regular weight */
color: var(--white-color);
}
input[type="email"],
input[type="password"] {
width: 100%;
padding: 0.5rem 0;
border: none;
background: transparent;
border-bottom: 1px solid var(--white-color);
border-radius: 0;
box-sizing: border-box;
color: var(--white-color);
font-family: 'TikTok Sans', sans-serif;
font-size: 1rem;
font-weight: 300;
}
input[type="email"]:focus,
input[type="password"]:focus {
outline: none;
border-bottom-color: var(--primary-color);
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
color: var(--placeholder-color);
opacity: 1; /* Firefox */
}
button {
width: 100%;
padding: 0.85rem;
border: 1px solid var(--primary-color);
border-radius: 4px; /* A slight radius for the button */
background-color: var(--primary-color);
color: var(--white-color);
font-size: 1rem;
font-weight: 700;
cursor: pointer;
transition: all 0.3s;
}
button:hover {
background-color: transparent;
color: var(--primary-color);
}
.form-footer {
text-align: center;
font-size: 0.9rem;
margin-top: 1.5rem;
}
.form-footer a {
color: var(--white-color);
text-decoration: underline;
font-weight: 400;
}
footer {
position: absolute;
bottom: 1rem;
left: 50%;
transform: translateX(-50%);
font-size: 0.8rem;
color: var(--white-color);
z-index: 2;
}
</style>
</head>
<body>
<div class="container">
<div class="form-panel">
<h1>Welcome Back</h1>
<p class="subtitle">Login or create an account to book your ride</p>
<form action="#" method="POST">
<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>
<button type="submit">Login</button>
</form>
<div class="form-footer">
Don't have an account? <a href="#">Sign Up</a>
</div>
</div>
</div>
<footer>
PHP v<?= htmlspecialchars($phpVersion) ?> | Page updated: <?= htmlspecialchars($now) ?> (UTC)
</footer>
</body>
</html>