-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (71 loc) · 2.48 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!Doctype html>
<html>
<head>
<title>Cat Clicker</title>
<link href="node_modules/bootstrap/dist/css/bootstrap.min.css"
rel="stylesheet"/>
<link href="css/styles.css" rel="stylesheet">
</head>
<body>
<main class="container mt-4 mb-5">
<div class="row justify-content-center">
<aside class="aside col-lg-4 mb-4">
<h2 class="mb-3">Select a cat</h2>
<ul class="list-group" id="cat-list">
</ul>
</aside>
<section class="main__section col-lg-7">
<header class="title">
<h1 class="mb-0">click on the cutest kitten</h1>
</header>
<figure class="hero-container">
</figure>
<button id="adminButton" class="btn btn-outline-secondary btn-sm mb-3">
SHOW ADMIN
</button>
<div class="admin">
<div class="admin__panel"></div>
<div class="p-4">
<form class="admin__controls">
<div class="form-group text-light text-left">
<label for="formGroupExampleInput">Cat name</label>
<input
type="text"
class="form-control bg-dark text-light"
id="nameInput"
placeholder="">
</div>
<div class="form-group text-light text-left">
<label for="formGroupExampleInput">Image url</label>
<input
type="text"
class="form-control bg-dark text-light"
id="imageNameInput"
placeholder="">
</div>
<div class="form-check text-light text-left mb-4">
<input
class="form-check-input"
type="checkbox"
value=""
id="resetClicksInput">
<label class="form-check-label" for="defaultCheck1">
Reset clicks
</label>
</div>
<div class="text-left">
<button class="btn btn-outline-light mr-2" id="saveBtn">Save</button>
<button class="btn btn-outline-light" id="cancelBtn">Cancel</button>
</div>
</form>
</div>
</div>
</section>
</div>
</main>
<footer>
</footer>
<script src="js/classes.js"></script>
<script src="js/index.js"></script>
</body>
</html>