mirror of
https://github.com/PretendoNetwork/website.git
synced 2026-04-24 23:47:19 -05:00
28 lines
1.2 KiB
Handlebars
28 lines
1.2 KiB
Handlebars
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
{{> head-common }}
|
|
<!-- page specific -->
|
|
<link rel="stylesheet" href="/assets/css/pretendo-auth.css">
|
|
<script src="/assets/js/auth.js" defer></script>
|
|
</head>
|
|
<body class="flex center">
|
|
<div class="card">
|
|
<h2 class="head">{{ locales.nav.brand }}</h2>
|
|
<div class="content">
|
|
<p class="txt-highlight">ERROR</p>
|
|
<h1 class="txt-title small">{{ locales.login_card.title }}</h1>
|
|
<form action="/api/v1/sendmessage" method="POST">
|
|
<label for="email">{{ locales.login_card.email_text }}</label>
|
|
<input type="text" class="hasLabel" id="email_input" name="email">
|
|
<label for="email">{{ locales.login_card.password_text }}</label>
|
|
<input type="password" class="hasLabel" id="password_input" name="password">
|
|
</form>
|
|
<button class="btn btnMargin" onclick="login()">{{ locales.login_card.button_text }}</button>
|
|
<p class="lowText">ERROR <a href="#">ERROR</a></p>
|
|
</div>
|
|
</div>
|
|
{{> footer-default }}
|
|
</body>
|
|
</html>
|