You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
354 B
14 lines
354 B
8 months ago
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>Upload Text File</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Upload a Text File to Count Word Frequencies</h1>
|
||
|
<form action="/" method="post" enctype="multipart/form-data">
|
||
|
<input type="file" name="file">
|
||
|
<input type="submit" value="Submit">
|
||
|
</form>
|
||
|
</body>
|
||
|
</html>
|