mirror of
https://github.com/caddyserver/website.git
synced 2025-04-29 00:09:15 -04:00
Account portal, download page, non-standard module docs
This ends v1 on the website. Docs archive still available through a sidebar nav link in the docs.
This commit is contained in:
parent
49ed10d267
commit
4f6d355a97
37 changed files with 1678 additions and 56 deletions
28
src/account/create.html
Normal file
28
src/account/create.html
Normal file
|
@ -0,0 +1,28 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Create Account - Caddy</title>
|
||||
{{include "/includes/account-head.html"}}
|
||||
<script src="/resources/js/account/create.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<form action="/api/create-account" class="card">
|
||||
<section class="head">
|
||||
<a href="/"><img src="/resources/images/caddy-lock.png" alt="Caddy Portal" class="logo"></a>
|
||||
</section>
|
||||
<section>
|
||||
<h1>Create Account</h1>
|
||||
or <a href="/account/login">log in</a>
|
||||
<div class="form-fields">
|
||||
<input type="text" name="name" id="name" placeholder="Name">
|
||||
<input type="email" name="email" id="email" placeholder="Email address" required>
|
||||
<input type="password" name="password" placeholder="Password" required>
|
||||
<button type="submit" id="submit" class="blue">Create Account</button>
|
||||
<p>
|
||||
We will send you an email to verify your account.
|
||||
</p>
|
||||
</div>
|
||||
</section>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue