forked from arm2009/main
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser_Enter.php
97 lines (89 loc) · 3.46 KB
/
user_Enter.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
<?php
include_once('UserControl/userControl.php');
$bAllDone = false;
if (isset($_POST["sLogin"]) && isset($_POST["sPass"]))
{
$bAllDone = true;
}
if ($bAllDone)
{
$bSelfMachine = true;
if ($_POST['checkbox'] == 'on') { $bSelfMachine = false;}
$sResult = UserControl::Login($_POST["sLogin"], $_POST["sPass"],$bSelfMachine);
if ($sResult != 'false')
{
header ('Location: work_Space.php');
exit();
}
else
{
$_POST[sPoupupHeader] = 'Упс';
$_POST[sPoupupMessge] = 'Такой адрес электронной почты или пароль нам неизвестен, может быть стоит воспользоватся <a href="http://www.arm2009.ru/test2014/user_Restore.php">средствами восстановления учетной записи</a>?';
}
}
?>
<!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">
<head>
<? include('Frame/header_all.php'); ?>
</head>
<body>
<? include_once('Frame/frame_PoupUp.php'); ?>
<table width="715" border="0" align="center" cellpadding="0" cellspacing="0" class="blockmargin_micro">
<tr>
<td align="left" class="white"><h1>Вход для пользователей</h1></td>
</tr>
</table>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td bgcolor="#0099CC" style="background:url(Grph/bkg/pattern_texture_w.jpg);">
<form action="" method="post">
<table width="715" border="0" align="center" cellpadding="0" cellspacing="0" class="blockmargin">
<tr>
<td>Адрес электронной почты<br />
<label for="textfield"></label>
<input name="sLogin" type="text" class="input_field input_field_715 input_field_background" id="sLogin" /></td>
</tr>
<td>Пароль<br />
<label for="textfield"></label>
<input name="sPass" type="password" class="input_field input_field_715 input_field_background" id="sPass" /></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td><label title="Поставьте эту отметку если не хотите чтобы после закрытия браузера на этом компьютере сохранилась информация связанная с использованием АРМ 2009"><table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="32"><input type="checkbox" name="checkbox" id="checkbox"/></td>
<td>— чужой компьютер</td>
<td width="32"> </td>
<td align="right" class="comment"><a href="user_Registration.php">Новая учетная запись</a><br />
<a href="user_Restore.php">Восстановить доступ</a></td>
</tr>
</table></label></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td height="1px" bgcolor="#0099CC"></td>
</tr>
<tr>
<td> </td>
</tr>
<td><input name="button" type="submit" class="input_button" id="button" value="Войти" /></td>
</tr>
</table>
</form>
</td>
</tr>
</table>
<?
/*Установка нижнего фрейма*/
include('Frame/frame_Bottom.php');
?>
<script>
/*Место для скриптов*/
</script>
</body>
</html>