-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
94 lines (83 loc) · 4.82 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="css/login.css" media="screen,projection"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<title>highlight</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
</head>
<body>
<div class="container">
<div class="row">
<a href="index.html" class="title-link"><h1 class="title">[high<span class="accent">light</span>]</h1></a>
</div>
<div class="row">
<div class="col s12 m6 l6">
<h5 class="header">Вход для переводчиков и редакторов</h5>
<div class="container">
<form class="col s12">
<div class="row no-bottom">
<div class="input-field col s12">
<input id="login" type="text" class="validate">
<label for="login">Логин</label>
</div>
<div class="input-field col s12">
<input id="password" type="password" class="validate">
<label for="password">Пароль</label>
</div>
</div>
<div class="input-field col s12 m12 l12 no-bottom no-top">
<p><label>
<input name="translator" type="radio" checked class="tr" />
<span>Переводчик</span>
</label></p>
</div>
<div class="input-field col s12 m12 l12 no-bottom no-top">
<p><label>
<input name="translator" type="radio" class="tr" id="editor" />
<span>Редактор</span>
</label></p>
</div>
<div class="input-field col s12 m12 l12 no-top">
<p><label>
<input name="translator" type="radio" class="tr" id="markup" />
<span>Верстальщик</span>
</label></p>
</div>
<a class="waves-effect waves-light btn submit grey" onclick="signin();">Войти</a>
<p class="header online">или</p>
<a class="waves-effect waves-gray btn-flat submit flat bottom" href="signup.html">Зарегистрироваться</a>
</form>
</div>
</div>
<div class="col s12 m6 l6">
<h5 class="header">Вход для получения документов</h5>
<div class="container">
<form class="col s12">
<div class="row">
<div class="input-field col s12">
<input id="name" type="text" class="validate">
<label for="name">ФИО</label>
</div>
<div class="input-field col s12">
<input id="email" type="email" class="validate">
<label for="email">Email</label>
</div>
</div>
<a onclick="signin_doctor();" class="waves-effect waves-light btn submit grey">Войти</a>
<p id="privacy_text">Нажимая на кнопку Войти, я даю <a href="privacy_policy.pdf">согласие на обработку персональных данных</a></p>
</form>
</div>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script src="js/utils.js"></script>
<script src="js/index.js"></script>
</body>
</html>