mirror of
https://github.com/mCaptcha/mCaptcha.git
synced 2026-02-11 01:55:40 +00:00
54 lines
1.3 KiB
HTML
54 lines
1.3 KiB
HTML
<. include!("../../components/headers/index.html"); .>
|
|
<div class="tmp-layout">
|
|
<main class="auth-main">
|
|
<div class="auth-inner-container">
|
|
|
|
<img src="<.=
|
|
crate::FILES.get("./static/cache/img/icon-trans.png").unwrap().>"
|
|
class="auth__logo" alt="mcaptcha logo" />
|
|
|
|
<form
|
|
class="sitekey-form"
|
|
method="POST"
|
|
action="<.= crate::V1_API_ROUTES.auth.login .>"
|
|
id="form"
|
|
>
|
|
<h1 class="form__title">
|
|
Signin to mCaptcha
|
|
</h1>
|
|
<label class="sitekey-form__label" for="username">
|
|
Username
|
|
<input
|
|
class="sitekey-form__input"
|
|
type="text"
|
|
name="username"
|
|
id="username"
|
|
required
|
|
/>
|
|
</label>
|
|
|
|
<label class="sitekey-form__label" for="duration">
|
|
Password
|
|
<input
|
|
class="sitekey-form__input"
|
|
type="password"
|
|
name="password"
|
|
id="password"
|
|
required
|
|
/>
|
|
<. include!("../../components/showPassword/index.html"); .>
|
|
</label>
|
|
|
|
<input type="submit" class="sitekey-form__submit" value="Sign in" />
|
|
</form>
|
|
<p class="auth__secondary-action__banner">
|
|
New to mCaptcha?
|
|
<a
|
|
href="<.= crate::PAGES.auth.join .>"
|
|
class="auth__secondary-action__link">
|
|
Create an account
|
|
</a>
|
|
</p>
|
|
</div>
|
|
<. include!("../../components/footers.html"); .>
|