-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (54 loc) · 2.08 KB
/
index.html
File metadata and controls
59 lines (54 loc) · 2.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Text Cleanup Tool</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<header>
<h1>Text Cleanup Tool</h1>
<p>Clean your text from formatting, special characters, and hidden AI characters</p>
</header>
<main>
<div class="input-section">
<label for="input-text">Paste your text here:</label>
<textarea
id="input-text"
placeholder="Paste your text with formatting and special characters here..."
rows="12"
></textarea>
</div>
<div class="controls">
<button id="clean-btn" class="primary-btn">Clean Text</button>
<button id="clear-btn" class="secondary-btn">Clear All</button>
</div>
<div class="output-section">
<label for="output-text">Cleaned text:</label>
<div class="output-container">
<textarea
id="output-text"
placeholder="Cleaned text will appear here..."
rows="12"
readonly
></textarea>
<button id="copy-btn" class="copy-btn" disabled>Copy to Clipboard</button>
</div>
</div>
</main>
<footer>
<p>No data is logged or stored. All processing happens in your browser.</p>
<div class="repo-info">
<p>
Created by <a href="https://github.com/mopx" target="_blank" rel="noopener noreferrer">@mopx</a> •
<a href="https://github.com/mopx/text-cleanup" target="_blank" rel="noopener noreferrer">View on GitHub</a> •
Open Source
</p>
</div>
</footer>
</div>
<script src="script.js"></script>
</body>
</html>