15 lines
425 B
15 lines
425 B
1 year ago
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Submit Suggestion</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Submit Your Suggestion</h1>
|
||
|
<form method="post" action="/submit" enctype="multipart/form-data">
|
||
|
<textarea name="suggestion" rows="4" cols="50" placeholder="Enter your suggestion here"></textarea><br>
|
||
|
<input type="file" name="attachment"><br>
|
||
|
<input type="submit" value="Submit">
|
||
|
</form>
|
||
|
</body>
|
||
|
</html>
|