OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <html> |
| 3 <head> |
| 4 <title>Scanner Control</title> |
| 5 <link rel="stylesheet" type="text/css" href="scan.css"> |
| 6 </head> |
| 7 <body> |
| 8 <div id="waitAnimation" style="display: none;"> |
| 9 <div id="waitSpinner"></div> |
| 10 </div> |
| 11 </img> |
| 12 <button id="requestButton">Request App permissions</button> |
| 13 <button id="listScanners" style="display: none;">List Scanners</button> |
| 14 <div id="scanOption" style="display: none;"> |
| 15 <button id="scanButton">Scan <span id="scannerName"></span></button> |
| 16 <form action="#"> |
| 17 <input id="scanModeColor" type="radio" name="scanMode" value="color" |
| 18 checked>Color |
| 19 </input> |
| 20 <input id="scanModeGrey" type="radio" name="scanMode" value="gray"> |
| 21 Gray |
| 22 </input> |
| 23 <input id="scanModeBW" type="radio" name="scanMode" value="lineart"> |
| 24 Black and White |
| 25 </input> |
| 26 </form> |
| 27 </div> |
| 28 <div id="scannedImages"> |
| 29 </div> |
| 30 <script src="scan.js"></script> |
| 31 </body> |
| 32 </html> |
OLD | NEW |