51 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
 | 
						|
<!DOCTYPE html>
 | 
						|
<html lang="en">
 | 
						|
 | 
						|
<head>
 | 
						|
    <title>GeoGuess</title>
 | 
						|
    <meta charset="utf-8">
 | 
						|
    <!-- Load our styles -->
 | 
						|
    <link rel="stylesheet" href="styles.css"/>
 | 
						|
    <link rel="stylesheet" href="https://code.jquery.com/ui/1.13.1/themes/ui-darkness/jquery-ui.css"/>
 | 
						|
    
 | 
						|
</head>
 | 
						|
 | 
						|
<!-- Main body -->
 | 
						|
<body>
 | 
						|
    <div class="main fit">
 | 
						|
        <div id="all" class="card">
 | 
						|
            <div class="heading p-1">
 | 
						|
                <div class="btn-primary btn p-1" id="showhide"><span class="ui-icon ui-icon-transferthick-e-w"></span></div>
 | 
						|
                <!-- <div class="btn-primary btn p-1" id="settings"><span class="ui-icon ui-icon-transferthick-e-w"></span></div> -->
 | 
						|
            </div>
 | 
						|
            <div class="containing px-4 py-2" style="width:500px">
 | 
						|
                <table class="table table-dark table-auto w-100 no-overflow">
 | 
						|
                    <thead><tr><th>#</th><th>User</th><th>Distance</th><th>Score</th></tr></thead>
 | 
						|
                    <tbody id="datatab">
 | 
						|
                        <tr><td>1</td><td>sora</td><td>1230</td><td>1230</td></tr>
 | 
						|
                        <tr><td>2</td><td>Sorb</td><td>1230</td><td>1230</td></tr>
 | 
						|
                        <tr><td>3</td><td>Sorc</td><td>1230</td><td>1230</td></tr>
 | 
						|
                    </tbody>
 | 
						|
                </table>
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
        
 | 
						|
        <div id="timer"></div>
 | 
						|
    </div>
 | 
						|
    <!-- jQuery -->
 | 
						|
    <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
 | 
						|
    <!-- Load jQuery UI -->
 | 
						|
    <script src="https://code.jquery.com/ui/1.13.1/jquery-ui.min.js"></script>
 | 
						|
    <!-- Load Reconnecting socket -->
 | 
						|
    <script src="/common/reconnecting-websocket/reconnectingWS.min.js"></script>
 | 
						|
    <!-- Load Bot config file -->
 | 
						|
    <script src="/common/js/wsConfig.js"></script>
 | 
						|
 | 
						|
    <!-- Load functions copied out of panel dir, since can't directly read panel dir (http auth problem) -->
 | 
						|
    <script src="/custom/js/socketWrapper.js"></script>
 | 
						|
 | 
						|
    <!-- Load our script -->
 | 
						|
    <script src="index.js"></script>
 | 
						|
</body>
 | 
						|
</html> |