You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
823 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<%--
Created by IntelliJ IDEA.
User: 16851
Date: 2026/5/13
Time: 9:44
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>添加兼职</title>
</head>
<body>
<h3>校园兼职网 - 添加兼职</h3>
<form action="${pageContext.request.contextPath}/parttime/add" method="post">
兼职ID<input type="text" name="id"><br>
兼职标题:<input type="text" name="title"><br>
发布商家:<input type="text" name="company"><br>
薪资:<input type="text" name="salary" placeholder="例15-20元/小时"><br>
工作地点:<input type="text" name="address"><br>
发布用户ID<input type="text" name="userId"><br>
<input type="submit" value="提交">
</form>
</body>
</html>