-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame.html
More file actions
70 lines (64 loc) · 2.45 KB
/
game.html
File metadata and controls
70 lines (64 loc) · 2.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/style.css">
<title>Nake</title>
</head>
<body>
<div class="wrapper">
<header class="header">
<div class="header-inner">
<a href="/" class="home-icon">NAKE</a>
<div class="search-box">
<div class="search-container">
<div class="search-input">
<input type="text" id="searchBar" placeholder="Search games..." autocomplete="off">
<button id="searchButton" class="button">Search</button>
</div>
<div class="search-hints"></div>
</div>
</div>
<div id="logged-out" class="action-card">
<button id="login-btn" class="button login">Log In</button>
</div>
<div id="logged-in" class="logged-in-section" style="display: none; align-items: center;">
<div id="profile" class="profile-card"></div>
<button id="logout-btn" class="button logout">Log Out</button>
</div>
<!-- Loading State -->
<div id="loading" class="loading-state">
<div class="loading-text">Loading...</div>
</div>
<!-- Error State -->
<div id="error" class="error-state" style="display: none;">
<div class="error-title">Oops!</div>
<div class="error-message">Something went wrong</div>
<div id="error-details" class="error-sub-message"></div>
</div>
</div>
</header>
<main class="main container">
<h1 class="title"></h1>
<div class="deals-container">
<ul class="game-list">
<li class="game-list_header">
<span class="game-list_header-title">Store</span>
<span class="game-list_header-price">Price</span>
<span class="game-list_header-discount">Discount</span>
</li>
</ul>
</div>
<div class="game-sidebar">
</div>
</main>
</div>
<script src="https://cdn.auth0.com/js/auth0-spa-js/2.1/auth0-spa-js.production.js"></script>
<script type="module" src="/config.js"></script>
<script type="module" src="/scripts.js"></script>
</body>
</html>