.
This commit is contained in:
77
WebRoot/add_adminjob.jsp
Normal file
77
WebRoot/add_adminjob.jsp
Normal file
@@ -0,0 +1,77 @@
|
||||
<%@ page language="java" contentType="text/html; charset=UTF-8"
|
||||
pageEncoding="UTF-8"%>
|
||||
<%@page import="java.sql.Connection"%>
|
||||
<%@page import="java.sql.*"%>
|
||||
<%@page import="java.sql.DriverManager"%>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>学生管理</title>
|
||||
<link rel="stylesheet" href="css/manage.css" type="text/css">
|
||||
<link rel="stylesheet" href="css/bootstrap.min.css" type="text/css">
|
||||
<link rel="stylesheet" href="css/footer.css" type="text/css">
|
||||
<script src="js/ie-emulation-modes-warning.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<%@ include file="/module/top.jsp" %>
|
||||
<div class="container">
|
||||
<%
|
||||
if (session.getAttribute("actualuser") == null) {
|
||||
out.println("<script>alert('登录超时 (1440 秒未活动)或未登录,请重新登录。');window.location.href='index.html';</script>");
|
||||
return;
|
||||
}
|
||||
Object actualuser = session.getAttribute("actualuser");
|
||||
%>
|
||||
<div class="row">
|
||||
<%@ include file="module/sidebar.jsp" %>
|
||||
<div class="col-lg-1 col-md-1 hidden-xs"></div>
|
||||
<h3 class="text-center">添加岗位</h3>
|
||||
<div class="col-sm-12 col-lg-9 col-md-9">
|
||||
<form class="form-horizontal" role="form" id="add_adminjob"
|
||||
name="add_adminjob" method="post"
|
||||
action="JSPhandle/adminjob_insert.jsp">
|
||||
<div class="form-group">
|
||||
<label for="jobname" class="col-sm-2 control-label">岗位名称</label>
|
||||
<div class="col-sm-10">
|
||||
<input type="text" class="form-control" placeholder="岗位名称"
|
||||
id="jobname" name="jobname">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
|
||||
<label for="jobduty" class="col-sm-2 control-label">岗位职责</label>
|
||||
<div class="col-sm-10">
|
||||
<textarea for="jobduty" class="form-control col-sm-2" rows="3"
|
||||
placeholder="岗位职责" id="jobduty" name="jobduty"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<div class="col-sm-offset-2 col-sm-10">
|
||||
<button type="submit" class="btn btn-success pull-right">添加</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Footer -->
|
||||
<div class="footer">
|
||||
|
||||
<!-- Copyright -->
|
||||
<div class="copyright">
|
||||
<p>
|
||||
© 2016 学生信息管理系统. All Rights Reserved | Design by <a
|
||||
href="http://blog.sina.com.cn/u/2007780675">F嘉阳</a>
|
||||
</p>
|
||||
</div>
|
||||
<!-- //Copyright -->
|
||||
|
||||
</div>
|
||||
<!-- //Footer -->
|
||||
</div>
|
||||
<script src="js/jquery-1.11.2.min.js" type="text/javascript"></script>
|
||||
<script src="js/bootstrap.js" type="text/javascript"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user