OOB-Dashboard/web/reset.html

53 lines
1.7 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Choose a new 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" id="form-panel">
<h2>Choose a new password</h2>
<p class="sub">Every browser currently signed in to this account will be signed out.</p>
<form id="form" novalidate>
<label>New password
<input type="password" id="password" autocomplete="new-password" required minlength="10" autofocus>
<small>At least 10 characters.</small>
</label>
<label>Confirm new password
<input type="password" id="confirm" autocomplete="new-password" required>
</label>
<button type="submit" class="primary" id="submit">Change my password</button>
</form>
<p id="note" class="msg" hidden></p>
<p class="alt"><a href="/login">Back to sign in</a></p>
</div>
<div class="panel" id="bad-panel" hidden>
<h2>That link no longer works</h2>
<p class="sub" id="bad-text">Reset links can only be used once, and they expire.</p>
<p class="alt"><a href="/forgot">Send me a new one</a></p>
</div>
</main>
<script src="/static/auth.js"></script>
<script src="/static/page-reset.js"></script>
</body>
</html>