17 lines
497 B
HTML
17 lines
497 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="utf-8"/>
|
||
|
<title>upload</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<form action="http://localhost:3000/api/publish" method="post" enctype="multipart/form-data">
|
||
|
<p><input type="text" name="text1" value="text default">
|
||
|
<p><input type="text" name="text2" value="aωb">
|
||
|
<p><input type="file" name="file1">
|
||
|
<p><input type="file" name="file2">
|
||
|
<p><input type="file" name="file3">
|
||
|
<p><button type="submit">Submit</button>
|
||
|
</form>
|
||
|
</body>
|
||
|
</html>
|