-
Notifications
You must be signed in to change notification settings - Fork 3
/
apply.php
executable file
·80 lines (73 loc) · 2.2 KB
/
apply.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
<?php
session_start();
if (!isset($_SESSION['log']) || empty($_SESSION['log']) || $_SESSION['log'] != 1) {
echo "<script>alert('请先登陆!');</script>";
header("Refresh:0;url=index.html");
exit();
}
?>
<!doctype html>
<html>
<head>
<title>申请兼职</title>
<meta charset="utf-8">
<link rel="stylesheet" href="./assets/css/nav.css">
<?php
echo "<link rel=\"stylesheet\" href=\"./assets/css/apply.css\">";
?>
</head>
<body>
<div id="header">
<div class="width_limit">
<a class="logo" href="home.php">
<img id="logo_img" src="images/logo.png" alt="logo">
</a>
<div class="logoutdiv">
<a href="index.html" class="header_tab logout">退出登录</a>
</div>
<div class="search">
<form action="">
<input id="search_input" type="text" title="在此处输入搜索内容" placeholder="搜索相关兼职">
<a id="search_btn" href="#">
<img src="images/search-btn.png" alt="search" style="width: 23px;height: 23px;">
</a>
</form>
</div>
<!-- navigator -->
<!-- 用列表结构实现导航栏,实现下拉框 -->
<ul>
<li><a href="home.php">首页</a></li>
<div class="dropdown active">
<a href="apply.php" class="dropbtn">申请兼职</a>
<div class="dropdown-content">
<a href="apply_school.php">校内兼职</a>
<a href="apply_company.php">企业兼职</a>
<a href="apply_lab.php">实验室兼职</a>
</div>
</div>
<li><a href="hiring.php">发布兼职</a></li>
<li><a href="myjob.php">我的兼职</a></li>
</ul>
</div>
</div>
<div id="content">
<!--主体内容头部标题-->
<div class="content_header">
<h1 id="topic">华工兼职招聘相关信息</h1>
<hr>
</div>
<!--主体内容表格-->
<div id="content_body">
<!-- 插入json信息 -->
</div>
<!-- 分页 -->
<div class="page">
<ul class="pagination">
</ul>
</div>
</div>
</body>
<script src="./assets/src/jquery.min.js"></script>
<script type="text/javascript" src="./assets/src/apply.js"></script>
<script type="text/javascript" src="./assets/src/nav.js"></script>
</html>