42 lines
1.8 KiB
HTML
42 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, maximum-scale=1.0, user-scalable=no">
|
|
<meta name="theme-color" content="#10b981">
|
|
<title>Welcome - ReceiptNext</title>
|
|
<link rel="icon" type="image/svg+xml" href="/static/favicon.svg">
|
|
<link rel="stylesheet" href="/static/css/style.css?v=4">
|
|
<script src="https://unpkg.com/htmx.org@1.9.10"></script>
|
|
</head>
|
|
<body>
|
|
<div class="app-shell">
|
|
<header class="app-header">
|
|
<h1 class="app-title" style="font-size: 1.1rem;">Welcome to ReceiptNext</h1>
|
|
</header>
|
|
|
|
<main class="main-content">
|
|
<p style="color: var(--color-text-muted); font-size: 0.9rem; margin-bottom: 1.5rem;">
|
|
Let's set up your profile. This information will appear on your expense reports.
|
|
</p>
|
|
|
|
<div id="onboarding-error"></div>
|
|
|
|
<form hx-post="/onboarding" hx-target="#onboarding-error" hx-swap="innerHTML">
|
|
<div class="form-group">
|
|
<label class="form-label" for="name">Full Name</label>
|
|
<input type="text" id="name" name="name" placeholder="Your name as it should appear on reports"
|
|
required autofocus>
|
|
</div>
|
|
<div class="form-group">
|
|
<label class="form-label" for="department">Department / Employee ID</label>
|
|
<input type="text" id="department" name="department" placeholder="e.g. Finance, ENG-1234">
|
|
</div>
|
|
<button type="submit" class="btn btn-primary btn-block" style="margin-top: 0.5rem;">
|
|
Save & Continue
|
|
</button>
|
|
</form>
|
|
</main>
|
|
</div>
|
|
</body>
|
|
</html>
|