-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauth.php
98 lines (85 loc) · 2.95 KB
/
auth.php
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
<?php
session_start();
require 'include/config.php';
foreach ($bd_connect as $v => $value) {
echo $v." ".$value;
}
echo $bd_connect['root'];
?>
<!DOCTYPE html>
<html>
<head>
<title>Регистрация</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
</head>
<body>
<div class="home">
<form action="auth.php" method="POST">
<div class="auth">
<center><h1>Регистрация</h1></center>
<?php
if (isset($_POST['auth'])) {
$errors = array();
if (trim($_POST['login']) == '')
{
$errors[] = "Введите логин";
}
if (trim($_POST['email']) == '')
{
$errors[] = "Пустой email";
}
if($_POST['password'] == '')
{
$errors[] = "Пустой пароль";
}
if ($_POST['repassword'] != $_POST['password'])
{
$errors[] = "Введенные пароли не идентичный";
}
if (empty($errors))
{
$query = "INSERT INTO users (login, email, password) VALUES ('$_POST[login]','$_POST[email]', md5('$_POST[password]'))";
if ($connect->query($query) ===TRUE)
{
echo "Регистрация прошла успешно ";
echo "Теперь можете <a href='login.php'>авторизоватся</a>";
}
}else{echo array_shift($errors);}
}
?>
<tr>
<input type="text" name="login" placeholder="Придумайте логин от 6 до 14 значений" value="<?php echo @$_POST[login]; ?>" pattern="^[a-zA-Z][a-zA-Z0-9-_\.]{6,14}$" required>
<h7 style="color:rgb(255,0,0); margin-left: 30px;">Логин должен состоять только из цифр и латинских букв </h7>
</tr>
<tr>
<input type="email" name="email" placeholder="Введите вашу электронную почту" value="<?php echo @$_POST[email]; ?>" required >
<h7 style="color:rgb(255,0,0); margin-left: 30px;">Пример: [email protected]</h7>
</tr>
<tr>
<input type="password" name="password" placeholder="Пароль от 6 до 16 значений " required pattern="(?=^.{6,16}$)((?=.*\d)|(?=.*\W+))(?![.\n])(?=.*[A-Z])(?=.*[a-z]).*$">
<h7 style="color:rgb(255,0,0); margin-left: 30px;">Пример: eXample$12, объязательные условие заглавная буква, символ, цифр</h7>
</tr>
<tr>
<input type="password" name="repassword" placeholder="Повторный пароль" required>
</tr>
<tr>
<div class="g-recaptcha" data-callback="enableBtn" name="recaptcha" data-sitekey="6Ld5MD0UAAAAAE3TzpwhAn4U4Ig_9vr2ois33DLG"></div>
</tr>
<tr>
<p id="sub">Please click the reCaptcha</p>
<input id="submit" type="submit" name="auth" value="Регистрация">
</tr>
</div>
</form>
</div>
<!--<script>
document.getElementById("submit").disabled = true;
function enableBtn() {
document.getElementById('submit').disabled = false;
document.getElementById("sub").innerHTML = "Now you can click it";
}
</script>
-->
</body>
</html>