mirror of
https://github.com/KevinMidboe/Node-Com-Handler.git
synced 2025-10-29 09:40:27 +00:00
21 lines
463 B
HTML
21 lines
463 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>tmdb.org Search Displayer</title>
|
|
<link rel="stylesheet" type="text/css" href="css/style.css">
|
|
</head>
|
|
<body>
|
|
<input type='text' id='link_id'>
|
|
<input type='button' id='btnSearch' value='Search' onClick="search(this)"'>
|
|
|
|
<label class="switch">
|
|
<input type="checkbox">
|
|
<div class="slider square"></div>
|
|
</label>
|
|
|
|
<p id="display"></p>
|
|
</body>
|
|
|
|
<script type="text/javascript" src="js/searchBar.js"></script>
|
|
|
|
</html> |