54 lines
1.5 KiB
HTML
54 lines
1.5 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Sign in · Out-of-Budget Dashboard</title>
|
|
<link rel="stylesheet" href="/static/styles.css">
|
|
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><text y='26' font-size='26'>📉</text></svg>">
|
|
</head>
|
|
<body>
|
|
|
|
<header class="topbar">
|
|
<div class="brand">
|
|
<span class="mark"></span>
|
|
<div>
|
|
<h1>Out-of-Budget Dashboard</h1>
|
|
<p>Amazon Ads change history → which campaigns keep going dark</p>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<main class="auth">
|
|
<div class="panel">
|
|
<h2>Sign in</h2>
|
|
<p class="sub">Use the address you signed up with.</p>
|
|
|
|
<form id="form" novalidate>
|
|
<label>Email
|
|
<input type="email" id="email" autocomplete="username" required autofocus>
|
|
</label>
|
|
<label>Password
|
|
<input type="password" id="password" autocomplete="current-password" required>
|
|
</label>
|
|
<button type="submit" class="primary" id="submit">Sign in</button>
|
|
</form>
|
|
|
|
<p id="note" class="msg" hidden></p>
|
|
|
|
<p class="alt" id="resend-wrap" hidden>
|
|
<button type="button" class="linklike" id="resend">Resend the confirmation email</button>
|
|
</p>
|
|
|
|
<p class="alt">
|
|
<a href="/forgot">Forgot your password?</a> ·
|
|
<a href="/signup">Create an account</a>
|
|
</p>
|
|
</div>
|
|
</main>
|
|
|
|
<script src="/static/auth.js"></script>
|
|
<script src="/static/page-login.js"></script>
|
|
</body>
|
|
</html>
|