-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgalerijaPanel.html
68 lines (59 loc) · 2.5 KB
/
galerijaPanel.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>San Dekor</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="panel.css">
<link rel="stylesheet" href="galerijaPanel.css">
</head>
<body>
<header>
<ul class="responseButton">
</ul>
<ul class="headBtns">
</ul>
<ul class="loginSignin">
<li><button class="headerBtns" id="login" onclick="location.href = './login/login.html'">Log in</button></li>
<li><button class="headerBtns removeLi" id="panel" onclick="location.href = 'adminpanel.html'">Panel</button></li>
<li><button class="headerBtns removeLi" id="logout" onclick="logout()">Log out</button></li>
<li><button class="headerBtns" id="signin" onclick="">Sign in</button></li>
</ul>
</header>
<div id="container">
<button onclick="showHideDelBtn()">del btn</button>
<button class="dodajKategoriju" onclick="dodajGaleriju()">Dodaj kategoriju</button>
<input type="text" id="kategorijaInput"><br>
<div class="kategorijeDiv">
</div>
<div class="progressBar">
</div>
</div>
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/8.1.2/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.1.2/firebase-firestore.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.1.2/firebase-storage.js"></script>
<!-- TODO: Add SDKs for Firebase products that you want to use
https://firebase.google.com/docs/web/setup#available-libraries -->
<script>
// Your web app's Firebase configuration
var firebaseConfig = {
apiKey: "AIzaSyB7IDwPw2CIzNiTM4ihmUT9fyaFD2lv8pY",
authDomain: "sandekor018.firebaseapp.com",
projectId: "sandekor018",
storageBucket: "sandekor018.appspot.com",
messagingSenderId: "376132193102",
appId: "1:376132193102:web:bc181b68de4c51f863ac1f"
};
// Initialize Firebase
firebase.initializeApp(firebaseConfig);
let db = firebase.firestore();
let storage = firebase.storage()
</script>
<script src="panel.js"></script>
<script src="script.js"></script>
<script src="galerijaPanel.js"></script>
<script src="panelBtns.js"></script>
</body>
</html>