-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (37 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, viewport-fit=cover"
/>
<meta
name="google-signin-client_id"
content="1026437203141-p6tbqfjv4nr7r0p9m783lk1ukh6h2924.apps.googleusercontent.com"
/>
<base href="/" />
<link rel="stylesheet" href="./src/styles/index.css" />
<link rel="stylesheet" href="./node_modules/lit-fontawesome/css/font.css" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap"
rel="stylesheet"
/>
<script src="https://apis.google.com/js/platform.js" async defer></script>
<script src="./src/scripts/authEventHandlers.js" async defer></script>
<title>anime-lister</title>
</head>
<body>
<nav-bar>
<div class="g-signin2" data-onsuccess="onSignIn"></div>
<div id="signed-in-controls">
<h4 id="signed-in-label" class='signed-in-label'></h4>
<button type="button" onclick="signOut()">Sign out</button>
</div>
</nav-bar>
<main id="outlet"></main>
<script type="module" src="./src/app.js"></script>
<script src="./src/scripts/rate.js"></script>
</body>
</html>