-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (49 loc) · 2.19 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="assets/style.css">
<title>authentication</title>
</head>
<body>
<div class="wrapper">
<section class="card auth-card">
<div class="auth-card__home">
<a class="auth-card__link auth-card__go-back" href="#">На главную</a>
</div>
<form action="/assets/index.js" class="auth-card__form auth-form" method="post">
<div class="auth-form__login">
<label class="label auth-form__label" for="login">Логин / email</label>
<input class="input" type="text" id="login" name="login" required autofocus >
</div>
<div class="auth-form__password">
<label class="label auth-form__label" for="password">Пароль</label>
<div class="auth-form__password-field">
<input class="input auth-form__password-input" type="password" id="password" name="password" required minlength="6">
<div class="auth-form__show-password"></div>
</div>
</div>
<div class="auth-form__remember-forgot">
<input type="checkbox" class="checkbox auth-form__remember" id="remember" name="remember">
<label for="remember" class="auth-form__remember-label label" form="remember">Не запоминать</label>
<div class="auth-form__forgot">
<a class="auth-form__link auth-form__forgot label" href="#">Забыл</a>
</div>
</div>
<div class="auth-form__submit">
<button class="auth-form__button auth-form__button-sumbit" type="submit">Войти</button>
<div class="auth-form__networks">
<button class="auth-form__button auth-form__button-network">GitHub</button>
<button class="auth-form__button auth-form__button-network">Telegram</button>
</div>
</div>
</form>
<div class="auth-card__register">
<a class="auth-card__link auth-card__go-for" href="#">На регистрацию</a>
</div>
</section>
</div>
<script src="/assets/script.js"></script>
</body>
</html>