mirror of
https://github.com/caddyserver/website.git
synced 2025-04-30 08:49:14 -04:00
24 lines
No EOL
778 B
HTML
24 lines
No EOL
778 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Confirm Account - Caddy</title>
|
|
{{include "/includes/account/head.html"}}
|
|
<script src="/resources/js/account/verify.js"></script>
|
|
</head>
|
|
<body>
|
|
<form action="/api/verify-account" class="card">
|
|
<section class="head">
|
|
<a href="/"><img src="/resources/images/caddy-lock.png" alt="Caddy Portal" class="logo"></a>
|
|
</section>
|
|
<section>
|
|
<h1>Confirm Account</h1>
|
|
or <a href="/account/login">log in</a>
|
|
<div class="form-fields">
|
|
<input type="email" name="email" id="email" placeholder="Email address" required>
|
|
<input type="text" name="account_id" placeholder="Account ID" required>
|
|
<button type="submit" id="submit" class="blue">Confirm</button>
|
|
</div>
|
|
</section>
|
|
</form>
|
|
</body>
|
|
</html> |