Newer
Older
jstrr / index.html
@HIROSE Yuuji HIROSE Yuuji on 20 Nov 2021 1 KB jsTrr Initial Commit
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>jsTrr</title>
<link rel="stylesheet" type="text/css" href="jstrr.css">
</head>

<body>
<!--
<p>TEAM: <select name="team"></select>
  NAME: <select name="name"></select></p>
-->
<p><span id="user"></span>: <span id="name"></span></p>
<p>TEXT: <span id="text"></span></p>
<p><button type="button" id="ranking">View Ranking</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>

<!-- 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>