-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (47 loc) · 1.34 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>网页资源下载器</title>
<style>
body {
font-family: Arial, sans-serif;
}
form {
max-width: 500px;
margin: auto;
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
background-color: #f9f9f9;
}
label, input {
display: block;
width: 100%;
margin-bottom: 10px;
}
input[type="submit"] {
width: auto;
padding: 10px 20px;
}
.container {
text-align: center;
margin-top: 50px;
}
</style>
</head>
<body>
<div class="container">
<h1>网页资源下载器</h1>
<form action="download.php" method="post">
<label for="url">网页URL:</label>
<input type="url" id="url" name="url" required>
<label for="filename">保存的文件名:</label>
<input type="text" id="filename" name="filename" required>
<input type="hidden" name="csrf_token" value="<?php echo hash('sha256', session_id()); ?>">
<input type="submit" value="下载">
</form>
</div>
</body>
</html>