34 lines
1.1 KiB
HTML
34 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>ISBN Scanner and Title Lookup</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<h1>Scan a Book ISBN or Search by Title</h1>
|
|
<div>
|
|
<label for="camera-select">Select Camera:</label>
|
|
<select id="camera-select"></select>
|
|
</div>
|
|
<div id="interactive" class="viewport"></div>
|
|
<div>
|
|
<h2>Or search for a book by title</h2>
|
|
<input type="text" id="title-input" placeholder="Enter book title">
|
|
<button id="search-title">Search by Title</button>
|
|
</div>
|
|
<div id="book-info"></div>
|
|
<div id="prompt">
|
|
<p id="prompt-message"></p>
|
|
<p id="book-title"></p>
|
|
<p id="book-author"></p>
|
|
<p id="book-desc"></p>
|
|
<button id="confirm">Add to Database</button>
|
|
<button id="edit-title">No, I'll add a title</button>
|
|
</div>
|
|
<script src="https://cdn.jsdelivr.net/npm/@ericblade/quagga2/dist/quagga.js"></script>
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|