-
Notifications
You must be signed in to change notification settings - Fork 2
/
match.html
59 lines (54 loc) · 1.82 KB
/
match.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
<!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">
<script
src="https://kit.fontawesome.com/f1831153cc.js"
crossorigin="anonymous"
></script>
<title>Wonderwins Cricket</title>
<link rel="icon" type="image/x-icon" href="https://png.pngtree.com/background/20210714/original/pngtree-simple-light-blue-background-picture-image_1219004.jpg">
<link rel="stylesheet" href="styles/match.css">
<link rel="stylesheet" href="styles/index.css">
</head>
<body>
<div id="navbar">
</div>
<div id="parent">
<div id="part1">
<div id="tpnv">
<div><p id="name"></p></div>
<div>
<a href="log_in.html">
<img id="logo" src="https://espn.wonderwins.com/assets/images/main_logo.png" alt="">
</a>
</div>
</div>
<div id="fantasy">
<h1>Welcome To
<span>Fantasy</span> League</h1>
</div>
</div>
<div id="part2">
</div>
</div>
</body>
</html>
<script type="module">
let Part2 = document.getElementById("part2");
import part2 from "./scripts/part2.js"
Part2.innerHTML = part2
</script>
<script>
let Profile_Info = JSON.parse(localStorage.getItem("Profile_Info"));
// alert(Profile_Info)
let Name = document.getElementById("name");
Name.innerText = Profile_Info.team_name;
</script>
<script type="module">
let navbar = document.getElementById("navbar");
import subtopnavbar from "./components/subtopnavbar.js"
navbar.innerHTML = subtopnavbar()
</script>