File size: 752 Bytes
e36eb69
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d2febe5
3bdf2b9
d2febe5
 
 
 
 
e36eb69
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!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>