-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsignup.html
109 lines (93 loc) · 5.7 KB
/
signup.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!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 type="text/css" rel="stylesheet" href="css/signup.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 m12 l12" id="signup-form">
<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>
<fieldset class="signup-fieldset" id="lang">
<legend class="signup-legend">Только для переводчиков</legend>
</fieldset>
<div id="soc" class="soc">
<div class="input-field col s12 m12 l4 soc">
<select id="soc_value0">
<option value="1" selected>ВК</option>
<option value="2">Facebook</option>
<option value="3">Telegram</option>
</select>
<label>Соц. сеть</label>
</div>
<div class="input-field col s12 m12 l8">
<input id="soc0" type="text" class="validate">
<label for="soc0">id</label>
</div>
</div>
<div id="soc-buttons">
<a onclick="remove_social();" id="soc-remove"><i id="soc-icon" class="material-icons circle grey">exposure_neg_1</i></a>
<a onclick="add_social();"><i id="soc-icon" class="material-icons circle grey">exposure_plus_1</i></a>
</div>
<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 class="input-field col s6">
<p><label>
<input class="tr" type="checkbox" name="translator" id="translator" checked />
<span>Перевод документов</span>
</label></p>
</div>
<div class="input-field col s6">
<p><label>
<input name="translator" type="checkbox" class="tr" id="editor" />
<span>Проверка документов</span>
</label></p>
</div>
<div class="input-field col s6">
<p><label>
<input name="translator" type="checkbox" class="tr" id="markup" />
<span>Вёрстка документов</span>
</label></p>
</div>
</div>
<a class="waves-effect waves-light btn submit grey" onclick="signup();">Зарегистрироваться</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/signup.js"></script>
</body>
</html>