-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcatalog.html
63 lines (42 loc) · 1.57 KB
/
catalog.html
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
60
61
62
63
<!DOCTYPE html>
<html>
<head>
<title>Catalog</title>
<meta charset="utf-8">
<link rel="stylesheet" href="styles/menu.css">
<link rel="stylesheet" href="styles/catalog.css">
</head>
<body>
<nav>
<ul>
<li> <a href="index.html"> Home</a> </li>
<li> <a href="catalog.html">Catalog</a> </li>
<li> <a href="newItems.html">Add New</a></li>
<li> <a href="gallery.html">Gallery</a></li>
<li> <a href="bestSeller.html">Most Liked</a></li>
<li id="login"> <a href="#">Login</a></li>
<ul class="hidden" style="padding-left: 15px;" >
<div>
<li> <input id="loginName" type="text" name="loginName" > </li>
<li> <input id="loginPassword" type="password" name="loginPassword" > </li>
<li> <button onclick="login()" >Login</button> </li>
</div>
</ul>
</ul>
</nav>
<button onclick="deleteSelectedMovies()" > Delete Items </button>
<div id="catalog">
<!--<div class="object">-->
<!--<img class="img" src="./images/bad.jpg" alt="Movie Image">-->
<!--<h1 class="title">Bad Samaritan</h1>-->
<!--<p class="desc">A pair of burglars stumble upon a woman being held captive in a home they intended to rob.</p>-->
<!--<p class="prize">150$</p>-->
<!--<button>Like</button> <span>10</span>-->
<!--<button>Dislike</button> <span>5</span>-->
<!--</div>-->
</div>
<script src="js/jquery-3.3.1.js"></script>
<script src="js/stuff.js"></script>
<script src="js/catalog.js"></script>
</body>
</html>