hgman/js/pageStatistics.js

40 lines
776 B
JavaScript
Raw Normal View History

2021-02-25 07:46:59 +03:00
'use stheadict';
const pageStatistics = '\
<table>\
<caption>User statistics</caption>\
<thead>\
<tr>\
<th>Name</th>\
<th>Value</th>\
</tr>\
</thead>\
<tbody>\
<tr>\
<th>Всего игр</th>\
<th id="stTotalGames">0</th>\
</tr>\
<tr>\
<th>Отгаданных слов</th>\
<th id="stWinWords">0</th>\
</tr>\
<tr>\
<th>% побед</th>\
<th id="stWinPercentage">0</th>\
</tr>\
<tr>\
<th>Всего букв нажато</th>\
<th id="stLetterClick">0</th>\
</tr>\
<tr>\
<th>Букв отгадано</th>\
<th id="stWinLetter">0</th>\
</tr>\
<tr>\
<th>Процент верных букв</th>\
<th id="stWinLetterPercent">0</th>\
</tr>\
</tbody>\
</table>\
';