-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstore.html
27 lines (27 loc) · 1.19 KB
/
store.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>IC hat extention store</title>
<link rel="shortcut icon" href="img/ic-hat.png">
<link href="style.css" rel="stylesheet">
<link href="store.css" rel="stylesheet">
<script src="https://www.gstatic.com/firebasejs/9.13.0/firebase-app-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/9.13.0/firebase-auth-compat.js"></script>
<script type="text/javascript" src="auth.js"></script>
</head>
<body>
<div id="connected">
<div class="store-grid" id="store">
<div class="store-1 store_box" data-name="crypted message" data-url="store/crypted.js" id="add_extention">
<img class="store_img" src="img/ic-hat.png"></img>
<button class="store_button">Add crypt message</button>
</div>
</div>
</div>
<script type="module" src="extention.js"></script>
<script type="module" src="js/ext/load-extention.js"></script>
</body>
</html>