Mind-Fuck/multipart-form/templates/index.mustache

22 lines
492 B
Plaintext
Raw Normal View History

2023-11-09 01:31:59 +00:00
<!DOCTYPE html>
<html>
<head>
<title>{{title}}</title>
</head>
<body>
<h1>{{title}}</h1>
<form method="post" enctype="multipart/form-data">
2023-11-10 06:33:40 +00:00
<div>
<label for="author">Author</label>
<input type="text" name="author" id="author">
</div>
2023-11-09 01:31:59 +00:00
<div>
<label for="file-upload">File</label>
<input type="file" name="file-upload" id="file-upload"
accept="image/jpeg, image/png, .jpeg, .jpg, .png">
</div>
<button type="submit">Upload</button>
</form>
</body>
</html>