57 lines
2.4 KiB
PHP
57 lines
2.4 KiB
PHP
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>FlexPass – Secure Login</title>
|
||
|
||
<!-- SEO & Meta Tags -->
|
||
<meta name="description" content="Secure login for FlexPass, the HIPAA-ready credentials vault.">
|
||
<meta name="robots" content="noindex, nofollow"> <!-- Internal tool, no need to index -->
|
||
|
||
<!-- Open Graph -->
|
||
<meta property="og:title" content="FlexPass – Secure Login">
|
||
<meta property="og:description" content="A secure, multi-tenant internal web app to store and manage client credentials.">
|
||
<meta property="og:type" content="website">
|
||
<meta property="og:url" content="">
|
||
|
||
<!-- Stylesheets -->
|
||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet">
|
||
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
|
||
|
||
</head>
|
||
<body>
|
||
|
||
<main class="login-container">
|
||
<div class="login-card">
|
||
<h1>FlexPass</h1>
|
||
<p class="tagline">HIPAA-Ready Credential Vault</p>
|
||
|
||
<form id="loginForm" novalidate>
|
||
<div class="mb-3 text-start">
|
||
<label for="email" class="form-label">Email Address</label>
|
||
<input type="email" class="form-control" id="email" required>
|
||
</div>
|
||
<div class="mb-4 text-start">
|
||
<label for="password" class="form-label">Password</label>
|
||
<input type="password" class="form-control" id="password" required>
|
||
</div>
|
||
<button type="submit" class="btn btn-primary w-100">Sign In</button>
|
||
</form>
|
||
|
||
<div class="phi-banner">
|
||
<strong>Reminder:</strong> Do not store Protected Health Information (PHI) in notes or other non-encrypted fields.
|
||
</div>
|
||
</div>
|
||
</main>
|
||
|
||
<!-- Scripts -->
|
||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
|
||
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
|
||
|
||
</body>
|
||
</html>
|