Shakhovak's picture
Update templates/index.html
3bdf2b9
raw
history blame
No virus
752 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CutEggOFF</title>
</head>
<body>
<h1>Russian Language Accent</h1>
<form action="/process" method="post">
<label for="input_text">Input Text:</label><br>
<textarea id="input_text" name="input_text" rows="20" cols="200"></textarea><br><br>
<input type="submit" value="Process">
</form>
</body>
<body>
<h1>Upload a Text File (txt in utf-8 only!!!)</h1>
<form action="/upload" method="post" enctype="multipart/form-data">
<input type="file" name="file" accept=".txt" required>
<button type="submit">Upload</button>
</form>
</body>
</html>