-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (44 loc) · 1.53 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Cat Clicker Premium</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<div class="main-content">
<ul id="cat-list"></ul>
<div id="cat-content">
<div id="cat-name"></div>
<img id="cat-picture" src=""/>
<div id="cat-count"></div>
</div>
<button id="admin-btn">Admin</button>
<div id="cat-admin">
<form id="update-cat" action="#">
<div class="cat-data-item">
<label for="update-name">Cat Name</label>
<input type="text" name="cat-name" id="update-name">
</div>
<div class="cat-data-item">
<label for="update-image">Cat Image url</label>
<input type="text" name="cat-image" id="update-image">
</div>
<div class="cat-data-item">
<label for="update-clicks">Cat Clicks</label>
<input type="text" name="cat-clicks" id="update-clicks">
</div>
<div class="submit-btns">
<input type="submit" name="cat-submit" id="cat-submit" value="Save">
<input type="submit" name="cat-cancel" id="cat-cancel" value="Cancel">
</div>
</form>
</div>
</div>
<script
src="https://code.jquery.com/jquery-1.12.4.js"
integrity="sha256-Qw82+bXyGq6MydymqBxNPYTaUXXq7c8v3CwiYwLLNXU="
crossorigin="anonymous"></script>
</body>
<script src="js/main.js"></script>
</html>