mirror of
https://github.com/mCaptcha/mCaptcha.git
synced 2024-12-19 20:32:31 +03:00
53 lines
No EOL
1.3 KiB
HTML
53 lines
No EOL
1.3 KiB
HTML
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Login|mCaptcha</title>
|
|
</head>
|
|
<body>
|
|
<div class="form-container">
|
|
<img src="./prod/img/icon-trans.7920418313D84DCDB2491E02E52E4BEF374970C216E85BD721274EE51241ECD4.png" class="form__logo" alt="" />
|
|
<h2 class="form__brand">Sign in to mCaptcha</h2>
|
|
|
|
<form class="form__box" id="form">
|
|
<label class="form__in-group" for="username"
|
|
>Username
|
|
<input
|
|
class="form__in-field"
|
|
id="username"
|
|
type="text"
|
|
name="username"
|
|
required=""
|
|
/>
|
|
</label>
|
|
|
|
<label for="password" class="form__in-group"
|
|
>Password
|
|
<input
|
|
class="form__in-field"
|
|
type="password"
|
|
id="password"
|
|
name="password"
|
|
required=""
|
|
/>
|
|
<!--
|
|
<a class="form__pw-recovery" -href="/recovert/password"
|
|
>Forgot password?</a
|
|
>
|
|
-->
|
|
</label>
|
|
<button class="form__submit-button" type="submit">
|
|
Submit
|
|
</button>
|
|
</form>
|
|
<div class="form__secondary-action">
|
|
<p class="form__secondary-action__banner">
|
|
New to mCaptcha?
|
|
<a href="/register" class="form__secondary-action__link"
|
|
>Create account</a
|
|
>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |