-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
59 lines (49 loc) · 1.33 KB
/
index.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
<?php
require_once "php/logged_in_redirrect.php";
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/index.css">
<title>Text Annotation Project</title>
</head>
<body>
<div id="wrapper">
<div id="header">
<div id="header_content">
<div id="logo">
<a id="link_logo" href="#">Text Annotation</a>
</div>
<div id="tools">
<a id="palette_button" href="#">Палитра</a>
</div>
</div>
</div>
<div id="content">
<div id="page">
</div>
</div>
<div id="footer">
<p id="project_name">KFU ITIS. 2013 (c)</p>
</div>
<div id="wall">
<div id="window">
<div id="window_header">
<p id="window_header_title">Text Annotation</p>
</div>
<div id="form_div">
<form id="login" method="POST" action="php/login.php">
<p>Username:</p>
<input type="text" name="login">
<p>Password:</p>
<input type="password" name="pass"><br><br>
<input type="submit" value="Войти">
</form>
<p>Если вы еще не прошли <a href="registration.php">регистрацию</a>, чтобы войти в систему, вам нужно ее пройти.</p>
</div>
</div>
</div>
</div>
</body>
</html>