-
Notifications
You must be signed in to change notification settings - Fork 0
/
auth.kit
executable file
·74 lines (54 loc) · 2.54 KB
/
auth.kit
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>Mishlen</title>
<meta name="description" content="" />
<meta name="author" content="" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" href="css/style.css" />
<script src="http://modernizr.com/downloads/modernizr-2.5.3.js"></script>
</head>
<body>
<div class="page-wrap">
<!-- @include "blocks/_header.html" -->
<div class="page-content c">
<div class="page-content__michelin"></div>
<div class="page-content__inner">
<div class="page-content__breadcrumbs">
<a href="">Главная</a> /
<a href="">Авторизация</a>
</div>
<div class="page-content__heading">Авторизация</div>
<form action="" class="auth-form">
<div class="form-row">
<label for="">Логин</label>
<div class="form-hint">
(Адрес электронной почты,<br>
указанный при регистрации)
</div>
<input class="medium" type="text">
</div> <!-- /.form-row -->
<div class="form-row">
<label for="">Пароль</label>
<input class="medium" type="password">
<a href="" class="form-help-link">Забыли пароль?</a>
</div> <!-- /.form-row -->
<div class="form-row">
<input type="checkbox" id="remember_me">
<label for="remember_me" class="inline grey">Запомнить меня</label>
</div>
</form>
<div class="page-content__hr"></div>
<div class="page-content__buttons">
<button class="btn btn_arr">Войти в личный кабинет</button>
</div>
</div> <!-- /.page-content__inner -->
</div> <!-- /.page-content -->
<!-- @include "blocks/_footer.html" -->
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.1/jquery.min.js"></script>
<script defer src="js/script.js"></script>
</body>
</html>