chore(release): 0.2.0
[risinglegends.git] / public / index.html
1 <!doctype html>
2 <html>
3   <head>
4     <title>Rising Legends</title>
5     <meta charset="utf-8">
6     <meta name="viewport" content="width=device-width, initial-scale=1" />
7     <link rel="stylesheet" href="/assets/css/reset.css">
8     <link rel="stylesheet" href="/assets/css/game.css">
9     <link rel="stylesheet" href="/assets/css/sky.css">
10     <script src="https://code.jquery.com/jquery-3.7.0.min.js" integrity="sha256-2Pmvv0kuTBOenSvLm6bvfBSSHrUJ+3A7x6P5Ebd07/g=" crossorigin="anonymous"></script>
11     <script src="/socket.io/socket.io.js"></script>
12   </head>
13   <body>
14     <div id="view">
15       <section id="stat-summary">
16         <div class="avatar-container">
17           <img id="avatar" src="https://via.placeholder.com/64x64">
18         </div>
19         <div id="stat-bars">
20           <div id="player-section">
21             <div id="username"></div>
22             <div class="gold"></div>
23           </div>
24           <div id="ap-bar"></div>
25           <div class="progress-bar" id="hp-bar"></div>
26           <div class="progress-bar" id="exp-bar"></div>
27         </div>
28       </section>
29       <nav>
30         <li><a href="#" data-section="inventory" data-container="main-nav">Profile</a></li>
31         <li><a href="#" data-section="skills" data-container="main-nav">Skills</a></li>
32         <li><a href="#" data-section="explore" data-container="main-nav">Explore</a></li>
33       </nav>
34
35       <div id="signup-prompt" class="hidden"></div>
36       <div id="announcements" class="hidden"></div>
37
38       <div id="alerts"></div>
39
40       <div id="main-nav">
41         <section id="inventory" class="tab">INVENTORY</section>
42         <section id="skills" class="tab">SKILLS</section>
43         <section id="explore" class="tab">
44           <div id="map"></div>
45           <div id="fight"></div>
46         </section>
47         <section id="settings" class="tab">
48           <div>
49             <p class="alert error">If you haven't set a username/password you will not be able to access this character again.</p>
50             <p><button class="btn" id="logout">Logout</button></p>
51           </div>
52         </section>
53       </div>
54
55       <section id="chat">
56         <div id="chat-messages"></div>
57         <form id="chat-form">
58           <input type="text" id="message" autocomplete="off"><button type="submit">Send</button>
59         </form>
60       </section>
61
62       <section id="game-footer">
63         <div>
64           <nav>
65             <a href="#" data-section="settings" data-container="main-nav">Settings</a>
66           </nav>
67         </div>
68         <div id="server-stats">0 Online - Now</div>
69       </section>
70
71       <footer>Another project by <a href="https://xangelo.ca/gardens/rising-legends/">xangelo.ca</a>. <span id="version"></span></footer>
72     </div>
73   </body>
74   <script src="/assets/bundle.js"></script>
75 </html>