-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
55 lines (48 loc) · 1.89 KB
/
header.php
File metadata and controls
55 lines (48 loc) · 1.89 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
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<title>PhoneBook</title>
<link rel="stylesheet" href="css/style.css" />
<script src="js/jquery-1.8.2.min.js"></script>
<script src="js/myScript.js"></script>
<!--[if IE]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div id="wrapper">
<header>
<h1>PhoneBook</h1>
<!-- Содержимое хедера -->
</header>
<div id="adduser">
<!-- Контент страницы -->
<!--img src="images/search-field.jpg" width="334" height="53" id="pic"-->
<p><a href="add_user.php">Add user</a></p>
</div>
<!--statusbar-->
<div id="status-bar">
<div id="status-bar-content">
<form action="" onsubmit="return false;" method="post" name="search-form" id="search-form" enctype="multipart/form-data">
<input name="queryName" id="queryID" value="Type your text here..." type="text"
onkeyUp="searchF();"
onblur="if(this.value=='') this.value='Type your text here...';"
onfocus="if(this.value=='Type your text here...') this.value='';"/>
</form>
<div id="status-bar-commands">
<p id="action-bar">
<a href="#login" title="All">All</a>
<a href="#sitemap" title="Phone">Phone</a>
<a href="#license" title="Facebook">Facebook</a>
<a href="simplexml.php" title="xml">xml</a>
</p>
</div>
</div>
</div>
<!--End statusbar-->
<!--Start container-->
<div class="container">
<!-- Подгружаем контакты из БД AJAX'ом -->
<!--?php require_once('ajaxAction.php'); ?-->
<!--end-->