-
Notifications
You must be signed in to change notification settings - Fork 0
/
auth.html
62 lines (55 loc) · 2.24 KB
/
auth.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
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="ru">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="author" content="{$page article-author}">
<meta name="keywords" content="{$page keywords}">
<meta name="description" content="{$page.description|escape}">
<meta name="robots" content="noindex">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="Cache-Control" content="max-age=31536000, must-revalidate">
<meta name="HandheldFriendly" content="True">
<meta http-equiv="cleartype" content="on">
<meta name="format-detection" content="telephone=no">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>ZES</title>
<link rel="stylesheet" href="css/plugins.css">
<!-- FONTS -->
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
<!-- my styles -->
<link rel="stylesheet" type="text/css" href="css/fontawesome.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body>
<div class="auth-wrapper d-flex flex-column justify-content-around align-items-center h-100 text-center">
<div class="container">
<div class="auth-title">Войти в проект ZES</div>
<div class="logo"><img src="img/Logo-white.svg" alt="logo"></div>
<form action="auth.php" class="auth-form">
<div class="form-group">
<label>
<input type="text" placeholder="+99893 123 45 66" class="auth-phone">
</label>
</div>
<div class="form-group">
<label>
<input type="password" placeholder="введите пароль" class="auth-password">
</label>
</div>
<div class="form-submit">
<label>
<input type="submit" class="btn-primary" value="Авторизоваться">
</label>
</div>
</form>
<div class="auth-tools">
<a href="registr.html">войти</a>
<a href="#">Восстановить пароль</a>
</div>
</div>
</div>
<script type="text/javascript" src="js/jquery-3.3.1.min.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<!-- Developed by [email protected] -->
</body>
</html>