-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathjoin.php
More file actions
36 lines (34 loc) · 1.22 KB
/
join.php
File metadata and controls
36 lines (34 loc) · 1.22 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
<?php
include_once 'conf.php';
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<title></title>
</head>
<body>
<?php
$reg = new auth(); //~ Создаем новый объект класса
$form = '
<a href="join.php">Авторизоваться</a><br />
<form action="" method="post">
логин <input type="text" name="login" id="" value="'.@$_POST['login'].'" /><br />
пароль <input type="password" name="passwd" id="" /><br />
повторите пароль <input type="password" name="passwd2" id="" /><br />
Почта <input type="text" name="mail" value="'.@$_POST['mail'].'" /><br />
<input type="submit" value="send" name="send" />
</form>
';
if (isset($_POST['send'])) {
if ($reg->reg($_POST['login'], $_POST['passwd'], $_POST['passwd2'], $_POST['mail'])) {
print '
<h2>Регистрация успешна.</h2>
Вы можете войти <a href="index.php">авторизоваться</a>.
';
} else print $form;
} else print $form;
//var_dump($_POST);
?>
</body>
</html>