forked from cat/WebBase
24 lines
547 B
HTML
24 lines
547 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title></title>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Welcome</h1>
|
|
<h1>POST test</h1>
|
|
<form action="/upload" method="POST" enctype="multipart/form-data">
|
|
<input type="text" name="filePassword">
|
|
<input type="text" name="name">
|
|
<input type="number" name="numb">
|
|
<input type="date" name="time">
|
|
<input type="file" name="uploadedFile">
|
|
<input type="submit" value="Upload">
|
|
</form>
|
|
</body>
|
|
|
|
</html>
|