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