in-the-database-2/src/html/upload.html

16 lines
454 B
HTML

<html>
<head>
<title>file upload</title>
</head>
<body>
<form action="/upload" method="post">
<label for="title">Title: </label><br>
<input type="text" id="title" name="title"><br>
<label for="artist">Artist: </label><br>
<input type="text" id="artist" name="artist"><br>
<label for="credit">Credit: </label><br>
<input type="text" id="credit" name="credit"><br>
<input type="submit" value="upload">
</form>
</body>
</html>