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
789 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.

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>数据查询 - 输入城市和工作</title>
<link rel="stylesheet" href="{{ url_for('static', filename='send.css') }}" type="text/css">
</head>
<body>
<div class="container">
<h1>数据查询 - 输入城市和工作</h1>
<form action="/result" method="post">
<label for="city">请输入城市:</label>
<input type="text" name="city" id="city" placeholder="例如:北京、上海、杭州等">
<label for="job">请输入职位:</label>
<input type="text" name="job" id="job" placeholder="例如Python开发工程师、Java软件工程师等">
<button type="submit">查询</button>
</form>
</div>
</body>
</html>