48 lines
1.8 KiB
HTML
48 lines
1.8 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="theme-color" content="#f3efe6" />
|
|
<title>Check List Portal</title>
|
|
<link rel="stylesheet" href="/styles.css" />
|
|
</head>
|
|
<body class="portal-body">
|
|
<!--
|
|
The portal intentionally acts as a simple role chooser rather than a real
|
|
authentication page. It separates user and admin entry points in the PoC
|
|
without committing the project to a security model too early.
|
|
-->
|
|
<main class="portal-shell">
|
|
<section class="portal-hero panel">
|
|
<p class="eyebrow">Check List Access</p>
|
|
<h1>Choose workspace</h1>
|
|
<p class="portal-copy">
|
|
Use the operator workspace for quality reports and the administrator workspace for configuration.
|
|
</p>
|
|
</section>
|
|
|
|
<section class="portal-grid">
|
|
<!-- Direct operator entry for report creation and local draft work. -->
|
|
<a class="portal-card panel" href="/user">
|
|
<p class="summary-label">User area</p>
|
|
<h2>Operator workspace</h2>
|
|
<p class="portal-copy">
|
|
Create reports, work offline, attach images, and manage local drafts.
|
|
</p>
|
|
<span class="button button-primary portal-button">Open user area</span>
|
|
</a>
|
|
|
|
<!-- Direct administrator entry for centrally managed configuration. -->
|
|
<a class="portal-card panel" href="/admin">
|
|
<p class="summary-label">Admin area</p>
|
|
<h2>Administrator workspace</h2>
|
|
<p class="portal-copy">
|
|
Maintain image requirements and other centrally managed configuration.
|
|
</p>
|
|
<span class="button button-secondary portal-button">Open admin area</span>
|
|
</a>
|
|
</section>
|
|
</main>
|
|
</body>
|
|
</html> |