-
Notifications
You must be signed in to change notification settings - Fork 2
/
add_title.php
128 lines (109 loc) · 4.84 KB
/
add_title.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<?php
require_once "query.php";
?>
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>软件工程大作业</title>
<!-- Bootstrap -->
<link href="assets/css/bootstrap.min.css" rel="stylesheet">
<!-- DIY CSS -->
<link href="assets/css/style.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="assets/js/html5shiv.min.js"></script>
<script src="assets/js/respond.min.js"></script>
<![endif]-->
</head>
<body style="padding-top: 70px;">
<!-- Navbar start -->
<nav class="navbar navbar-default navbar-fixed-top navbar-inverse " role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#nav-title" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">教师工资管理系统 - 管理员 <small>demo</small></a>
</div>
<div class="collapse navbar-collapse" id="nav-title">
<ul class="nav navbar-nav navbar-right">
<li class="dropdown" id="nav-user">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false"><?php echo $staff_name;?><span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="admin.php">回到主页</a></li>
<li role="separator" class="divider"></li>
<li><a href="logout.php">注销</a></li>
</ul>
</li>
<li><a href="#" data-toggle="modal" data-target="#about">关于</a></li>
</ul>
</div>
</div>
</nav>
<!-- Navbar end -->
<div class="container" style="padding-top: 50px; padding-bottom: 40px;">
<div class="panel">
<form action="functions/add_title.php" role="form" method="post">
<div class="panel-heading text-center">
<strong>添加职称</strong>
</div>
<div class="panel-body">
<div class="form-group">
<label for="title_name">职称</label>
<input type="text" class="form-control" id="title_name" name="title_name" placeholer="职称">
</div>
<div class="form-group">
<label for="wage">基本工资</label>
<input type="text" class="form-control" id="wage" name="wage" placeholer="基本工资">
</div>
</div>
<div class="panel-footer" stylr="float:right;">
<button class="btn btn-success" type="submit">完成</button>
<button class="btn btn-warning" type="reset">清除</button>
</div>
</form>
</div>
</div>
<!-- Footer start -->
<div class="navbar navbar-default navbar-fixed-bottom">
<div class="container">
<footer class="text-center" style="padding-top: 15px;">
<p style="margin-bottom: -1px;"><strong>海南大学信息科学技术学院 - 软件工程大作业</strong></p>
<p>by 何俊霖 马海英 刘润一 蒋雨汐 <small>版权所有,仅供内部交流</small></p>
</footer>
</div>
</div>
<!-- Footer end -->
<!-- 弹出框 -->
<div class="modal fade" id="about" tabindex="-1" role="dialog">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title">关于</h4>
</div>
<div class="modal-body">
<p>一个基本的工资管理系统的实现,基于 Apache - PHP - MySQL 开发。</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary" data-dismiss="modal">了解了</button>
</div>
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal-dialog -->
</div>
<!-- /.modal -->
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="assets/js/jquery-3.2.1.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="assets/js/bootstrap.min.js"></script>
</body>
</html>