34329-vm/login.php
Flatlogic Bot a7265cf7d7 0.1
2025-09-24 04:05:20 +00:00

39 lines
1.9 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login - SREC SmartQ Print Hub</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="assets/css/custom.css">
</head>
<body>
<div class="container-fluid login-container d-flex align-items-center justify-content-center">
<div class="card login-card shadow-lg p-4" style="width: 100%; max-width: 400px; border-radius: 12px;">
<div class="card-body">
<div class="text-center mb-4">
<h1 class="logo">Smart<span class="q">Q</span></h1>
<p class="text-muted">SREC Print Hub</p>
</div>
<form action="index.php">
<div class="mb-3">
<label for="email" class="form-label">Email address</label>
<input type="email" class="form-control" id="email" placeholder="student@srec.ac.in" required>
</div>
<div class="mb-3">
<label for="password" class="form-label">Password</label>
<input type="password" class="form-control" id="password" placeholder="••••••••" required>
</div>
<div class="d-grid">
<button type="submit" class="btn btn-primary-custom">Login</button>
</div>
</form>
<div class="text-center mt-3">
<small class="text-muted">New user? <a href="#">Register here</a></small>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>