-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathregistration.html
More file actions
95 lines (87 loc) · 4.29 KB
/
registration.html
File metadata and controls
95 lines (87 loc) · 4.29 KB
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
<!DOCTYPE html>
<html>
<head>
<title>FacesBook - Регистрация</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">11
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/general.css">
<link rel="stylesheet" href="css/registration.css">
</head>
<body>
<!-- Navbar -->
<div class="w3-top">
<div class="w3-bar w3-red w3-card w3-left-align w3-large">
<a class="w3-bar-item w3-button w3-hide-medium w3-hide-large w3-right w3-padding-large w3-hover-white w3-large w3-red" href="javascript:void(0);" onclick="menuSwitcher()" title="Нажмите для открытия меню навигации"><i class="fa fa-bars"></i></a>
<a href="index.html" class="w3-bar-item w3-button w3-hide-small w3-padding-large w3-hover-white" id="show-auth">Главная</a>
<a href="about.html" class="w3-bar-item w3-button w3-hide-small w3-padding-large w3-hover-white">О сервисе</a>
<a href="address_book.html" class="w3-bar-item w3-button w3-hide-small w3-padding-large w3-hover-white">Контактная книга</a>
<a href="login.html" class="w3-bar-item w3-button w3-padding-large w3-white">Авторизация</a>
<a href="user_page.html" class="w3-bar-item w3-button w3-hide-small w3-padding-large w3-hover-white" id="show-user">USER</a>
</div>
<!-- Navbar on small screens -->
<div id="navDemo" class="w3-bar-block w3-white w3-hide w3-hide-large w3-hide-medium w3-large">
<a href="about.html" class="w3-bar-item w3-button w3-padding-large">О сервисе</a>
<a href="address_book.html" class="w3-bar-item w3-button w3-padding-large">Контактная книга</a>
<a href="auth.html" class="w3-bar-item w3-button w3-padding-large" id="show-auth-small">Авторизация</a>
<a href="user_page.html" class="w3-bar-item w3-button w3-padding-large" id="show-user-small">USER</a>
</div>
</div>
<!-- Header -->
<header class="w3-container w3-red w3-center" style="padding:128px 16px">
<h1 class="w3-margin w3-jumbo">FacesBook</h1>
<p class="w3-xlarge">Регистрация в системе</p>
</header>
<!-- First Grid -->
<div class="w3-row-padding w3-padding-64 w3-container">
<div class="w3-content">
<div class="w3-text-red">
<table cellpadding="5" cellspacing="0" class="regField">
<tbody>
<tr>
<td colspan="2" align="center">
<p>Введите следующие данные:</p>
</td>
</tr>
<tr>
<td>ФИО:<br></td>
<td><input type="text" id="data-fio" maxlength="100"></td>
</tr>
<tr>
<td>Email:<br></td>
<td><input type="email" id="data-email" maxlength="25"></td>
</tr>
<tr>
<td>Пароль:<br></td>
<td><input type="password" id="data-password" maxlength="14"></td>
</tr>
<tr>
<td>Повторите пароль:<br></td>
<td><input type="password" id="data-password-check" maxlength="14"></td>
</tr>
<tr>
<td>Ключ регистрации:<br></td>
<td><input type="text" id="data-reg-key" minlength="32" maxlength="32"></td>
</tr>
<tr>
<td class="w3-text-grey" colspan="2" style="text-align: center;"><input type="button" value="Регистрация" id='btn-reg'></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="w3-center w3-text-red">
<a class="" href="login.html">Уже зарегистрированы? Войдите в систему!</a>
</div>
<!-- Footer -->
<footer class="w3-container w3-padding-64 w3-center w3-opacity">
<p>Copyright © 2017, <a href="https://www.t.me/snapeeye" target="_blank">Vongola Inc</a>., All Rights Reserved</p>
</footer>
<script src="js/general.js" type="text/javascript"></script>
<script src="js/registration.js" type="text/javascript"></script>
</body>
</html>