-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (77 loc) · 3 KB
/
index.html
File metadata and controls
85 lines (77 loc) · 3 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="icon" href="./assets/img/logo.png">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@mdi/font@latest/css/materialdesignicons.min.css">
<link rel="stylesheet" href="assets/style/main.css">
<link rel="stylesheet" href="assets/style/style.css">
<title>spellbook</title>
</head>
<body data-bs-theme="light">
<header>
<nav class="navbar bg-codeworks text-light gap-2 px-2">
<img src="./assets/img/logo.png" height="45" alt="" loading="lazy">
<div><b>spellbook</b></div>
<div class="ms-auto" id="authstate"></div>
</div>
</nav>
</header>
<main class="container-fluid">
<div class="row">
<div class="col-md-3" id="list-spells">
<!-- <div>spell name</div>
<div>spell name</div>
<div>spell name</div>
<div>spell name</div>
<div>spell name</div>
<div>spell name</div> -->
</div>
<div class="col-md-6" id="active-spell">
<!-- <div class="card">
<div class="card-body">
<div class="card-title fs-3 fw-bold">
Spell name
</div>
<div class="spell-details">
<i class="mdi mdi-target-variant"></i>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Quis eligendi similique ea fugit blanditiis maiores, voluptatibus nam, alias quos magnam facilis magni quidem nesciunt reiciendis quaerat, vitae harum atque architecto!</p>
</div>
<div class="text-end mt-3">
<button class="btn btn-dark">Learn Spell</button>
</div>
</div>
</div> -->
</div>
<div class="col-md-3">
<div id="known-spells-count">1 prepared 30 known</div>
<div id="known-spells"></div>
<!-- my spells
<div class="d-flex align-content-center gap-2">
<input type="checkbox">
<span>
spell name
</span>
</div> -->
</div>
</div>
</main>
<footer class="text-bg-dark">
<div class="text-center">
<p class="mb-0"><small>Made with <i class="mdi mdi-heart text-pink"></i> by CodeWorks</small></p>
</div>
</footer>
<!-- SECTION links for bootstrap, axios, and auth -->
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<script src="https://cdn.auth0.com/js/auth0-spa-js/1.22/auth0-spa-js.production.js"></script>
<script src="https://cdn.jsdelivr.net/gh/jakeoverall/auth0provider-client/browser/Auth0Provider.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"></script>
<!-- !SECTION -->
<!-- The start of our javascript -->
<script src="app/App.js" type="module"></script>
</body>
</html>