-
Notifications
You must be signed in to change notification settings - Fork 213
/
Copy pathindex.html
33 lines (28 loc) · 840 Bytes
/
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
<html>
<head>
<title>sunshine</title>
</head>
<body>
<h1>GET</h1>
<form action="http://127.0.0.1:8080/process_get" method="GET">
First Name:
<input type="text" name="first_name"><br>
Last Name:
<input type="text" name="last_name">
<input type="submit" value="Submit">
</form>
<h1>POST</h1>
<form action="http://127.0.0.1:8080/process_post" method="POST">
First Name:
<input type="text" name="first_name"><br>
Last Name:
<input type="text" name="last_name">
<input type="submit" value="Submit">
</form>
<h1>文件上传</h>
<form action="/file_upload" method="post" enctype="multipart/form-data">
<input type="file" name="image" size="50" /><br />
<input type="submit" value="上传文件" />
</form>
</body>
</html>