Update templates/other.html
Browse files- templates/other.html +3 -8
templates/other.html
CHANGED
@@ -9,13 +9,14 @@
|
|
9 |
<body>
|
10 |
<div class="container">
|
11 |
<h1>Image OCR</h1>
|
12 |
-
<p>Paste an image and recognize text from it.</p>
|
13 |
<div class="button-container">
|
14 |
<button type="button" onclick="window.location.href='/'">Go to Home</button>
|
15 |
<button type="button" onclick="performOCR()">Perform OCR</button>
|
16 |
</div>
|
17 |
<div class="paste-container">
|
18 |
<h2>Paste your image here</h2>
|
|
|
|
|
19 |
<div id="paste-box" contenteditable="true" onpaste="handlePaste(event)">
|
20 |
<p></p>
|
21 |
</div>
|
@@ -28,13 +29,7 @@
|
|
28 |
</div>
|
29 |
</div>
|
30 |
<div id="ocr-result" class="ocr-result"></div>
|
31 |
-
<div id="loading" class="loading" style="display: none;">
|
32 |
-
<div class="loader">
|
33 |
-
<div class="inner one"></div>
|
34 |
-
<div class="inner two"></div>
|
35 |
-
<div class="inner three"></div>
|
36 |
-
</div>
|
37 |
-
</div>
|
38 |
</div>
|
39 |
<script src="/static/js/other.js"></script>
|
40 |
</body>
|
|
|
9 |
<body>
|
10 |
<div class="container">
|
11 |
<h1>Image OCR</h1>
|
|
|
12 |
<div class="button-container">
|
13 |
<button type="button" onclick="window.location.href='/'">Go to Home</button>
|
14 |
<button type="button" onclick="performOCR()">Perform OCR</button>
|
15 |
</div>
|
16 |
<div class="paste-container">
|
17 |
<h2>Paste your image here</h2>
|
18 |
+
<p>Remember to save image before perform OCR</p>
|
19 |
+
<p>It will take several minutes, please be patient</p>
|
20 |
<div id="paste-box" contenteditable="true" onpaste="handlePaste(event)">
|
21 |
<p></p>
|
22 |
</div>
|
|
|
29 |
</div>
|
30 |
</div>
|
31 |
<div id="ocr-result" class="ocr-result"></div>
|
32 |
+
<div id="loading" class="loading" style="display: none;">Loading</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
</div>
|
34 |
<script src="/static/js/other.js"></script>
|
35 |
</body>
|