-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnew_document.php
More file actions
49 lines (40 loc) · 1.12 KB
/
new_document.php
File metadata and controls
49 lines (40 loc) · 1.12 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
<?php
require_once "php/allow_entry.php";
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/new_document.css">
<script src="js/save_document.js"></script>
<script src="js/redirrect_to_catalog.js"></script>
<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="index.php">Text Annotation</a>
</div>
<div id="user_menu">
<p id="username"><?php echo $_SESSION['username']; ?></p>
<a id="exit_button" href="php/exit.php"><img src="css/img/exit_button.png"></a>
</div>
<div id="tools">
<a id="save_button" href="javascript: save_document();">Сохранить</a>
</div>
</div>
</div>
<div id="content">
<div id="page">
<textarea placeholder="Title" id="title"></textarea>
<textarea placeholder="Text" id="text"></textarea>
</div>
</div>
<div id="footer">
<p id="project_name">KFU ITIS. 2013 (c)</p>
</div>
</div>
</body>
</html>