OOB-Dashboard/web/forgot.html

43 lines
1.2 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Reset your password &middot; 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 &rarr; which campaigns keep going dark</p>
</div>
</div>
</header>
<main class="auth">
<div class="panel">
<h2>Reset your password</h2>
<p class="sub">We will email you a link to choose a new one.</p>
<form id="form" novalidate>
<label>Email
<input type="email" id="email" autocomplete="username" required autofocus>
</label>
<button type="submit" class="primary" id="submit">Send the link</button>
</form>
<p id="note" class="msg" hidden></p>
<p class="alt"><a href="/login">Back to sign in</a></p>
</div>
</main>
<script src="/static/auth.js"></script>
<script src="/static/page-forgot.js"></script>
</body>
</html>