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.

30 lines
800 B

<!DOCTYPE html>
<html>
<head>
<title>boss直聘爬取</title>
<link rel="stylesheet" href="{{ url_for('static', filename='crawl.css') }}" type="text/css">
</head>
<body>
{% if result == 1 %}
<script>alert("爬取成功");</script>
{% elif result == 0 %}
<script>alert("爬取失败");</script>
{% else %}
<script>alert("请输入信息");</script>
{% endif %}
<h1 class="title">在线爬取</h1>
<form action="/crawl" method="post">
<label for="city">城市:</label>
<input type="text" id="city" name="city"><br><br>
<label for="job">工作:</label>
<input type="text" id="job" name="job"><br><br>
<label for="pages">页数:</label>
<input type="number" id="pages" name="pages"><br><br>
<input type="submit" value="提交">
</form>
</body>
</html>