Newer
Older
jstrr / index.html
@ItoRino ItoRino on 15 Dec 2021 1 KB a
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>jsTrr</title>
<link rel="stylesheet" type="text/css" href="jstrr.css">
</head>

<body>
<div class="inner">
  <!--
  
  <p>TEAM: <select name="team"></select>
    NAME: <select name="name"></select></p>
  -->
  <p><span id="user"></span>: <span id="name"></span>
  <select id="trrmode"><option value="normal" selected>Normal</option>
  <option value="secret">Secret</option></select>
  <button id="logout">Logout</button>
  </p>
  <p>TEXT: <span id="text"></span></p>
  <p>RANK: <button type="button" id="ranking">Total</button>
  <button type="button" id="ranking:today">Today</button>
  <button type="button" id="ranking:2h">2H</button>
  <button type="button" id="ranking:2w">2W</button>
  <button type="button" id="ranking:byteam">Team Rank</button>
  <button type="button" id="ranking:byteam2h">Team 2H</button>
  <button type="button" id="ranking:inteam">inTeam</button>
  </p>
  <table>
   <tr><th>Time</th><td id="time"></td><th>STEP</th><td id="step"></td></tr>
   <tr><th>Miss</th><td id="miss"></td><th>Target</th><td id="target"></td></tr>
   <tr><th>Ratio</th><td id="ratio"></td><th>High Score</th><td id="hs"></td></tr>
   <tr><th>Types</th><td id="types"></td><th>Trr Trial</th><td id="trial"></td></tr>
   <tr><th>Speed</th><td id="speed"></td><th>STEP Trial</th><td id="strial"></td></tr>
   <tr><th>Score</th><td id="score"></td><th></th><td></td></tr>
   <tr><th>Comment</th><td colspan="3" id="comment"></td></tr>
  </table>
  <div id="typing"></div>
  
  <div class="login">
  <p id="loginhead">jsTRR</p>
  <p><span id="prompt">Login</span>
  <input id="inputvalue">
  <button id="login" type="button">OK</button>
  <button id="reset" type="button">reset</button>
  </p>
  </div>
</div>

<!-- csv.js by knrz from https://github.com/knrz/CSV.js/blob/master/csv.js -->
<script type="text/javascript" src="lib/csv.min.js" charset="utf-8"></script>

<script type="text/javascript" src="jstrr.js" charset="utf-8"></script>


</body>
</html>