[c3268ca] | 1 | <!DOCTYPE html>
|
---|
| 2 | <html style="font-size: 16px;" lang="en"><head>
|
---|
| 3 | <meta name="viewport" content="width=device-width, initial-scale=1.0">
|
---|
| 4 | <meta charset="utf-8">
|
---|
| 5 | <meta name="keywords" content="">
|
---|
| 6 | <meta name="description" content="">
|
---|
| 7 | <title>Quiz Ranking Report</title>
|
---|
| 8 | <link rel="stylesheet" href="temp.css" media="screen">
|
---|
| 9 | <link rel="stylesheet" href="Result.css" media="screen">
|
---|
| 10 | <link rel="stylesheet" href="styles.css" media="screen">
|
---|
| 11 | <script class="u-script" type="text/javascript" src="jquery.js" defer=""></script>
|
---|
| 12 | <script class="u-script" type="text/javascript" src="temp.js" defer=""></script>
|
---|
| 13 | <meta name="generator" content="Nicepage 5.4.4, nicepage.com">
|
---|
| 14 | <link id="u-theme-google-font" rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i|Open+Sans:300,300i,400,400i,500,500i,600,600i,700,700i,800,800i">
|
---|
| 15 |
|
---|
| 16 |
|
---|
| 17 | <script type="application/ld+json">{
|
---|
| 18 | "@context": "http://schema.org",
|
---|
| 19 | "@type": "Organization",
|
---|
| 20 | "name": "",
|
---|
| 21 | "logo": "images/logo.png"
|
---|
| 22 | }</script>
|
---|
| 23 | <meta name="theme-color" content="#478ac9">
|
---|
| 24 | <meta property="og:title" content="Result">
|
---|
| 25 | <meta property="og:type" content="website">
|
---|
| 26 | <meta data-intl-tel-input-cdn-path="intlTelInput/"></head>
|
---|
| 27 | <body class="u-body u-xl-mode" data-lang="en"><header class="u-clearfix u-header u-header" id="sec-2d07">
|
---|
| 28 |
|
---|
| 29 |
|
---|
| 30 |
|
---|
| 31 | <div th:insert="~{_layout :: header}"></div>
|
---|
| 32 |
|
---|
| 33 |
|
---|
| 34 |
|
---|
| 35 | </header>
|
---|
| 36 | <section class="u-align-center-sm u-align-center-xs u-align-right-lg u-align-right-md u-align-right-xl u-clearfix u-palette-1-base u-section-1" id="sec-88e1">
|
---|
| 37 | <div class="u-clearfix u-sheet u-valign-middle-md u-valign-middle-sm u-valign-middle-xs u-sheet-1">
|
---|
| 38 | <div class="u-container-layout u-valign-middle u-container-layout-1">
|
---|
| 39 | <div class="u-align-center u-text u-text-default u-text-1">
|
---|
| 40 |
|
---|
| 41 | <h1 style="margin-top: 100px; margin-bottom: 50px" class="u-container-layout u-valign-middle u-container-layout-1">
|
---|
| 42 | Quizzes Ranked by Number of Correct Questions</h1>
|
---|
| 43 |
|
---|
| 44 | <table class="table table-bordered mt-3 reportTabeli">
|
---|
| 45 | <thead class="thead-dark">
|
---|
| 46 | <tr>
|
---|
| 47 | <th scope="col">Quiz Name</th>
|
---|
| 48 | <th scope="col">Count of Correct Questions</th>
|
---|
| 49 | </tr>
|
---|
| 50 | </thead>
|
---|
| 51 | <tbody>
|
---|
| 52 | <tr th:each="item : ${items}">
|
---|
| 53 | <td th:text="${item.getQuizname()}"></td>
|
---|
| 54 | <td th:text="${item.getCounter()}"></td>
|
---|
| 55 |
|
---|
| 56 | </tr>
|
---|
| 57 | </tbody>
|
---|
| 58 | </table>
|
---|
| 59 |
|
---|
| 60 | </div>
|
---|
| 61 | </div>
|
---|
| 62 | </div>
|
---|
| 63 | </section>
|
---|
| 64 |
|
---|
| 65 |
|
---|
| 66 | <footer class="u-align-center u-clearfix u-footer u-grey-80 u-footer" id="sec-9625">
|
---|
| 67 |
|
---|
| 68 | <div th:insert="~{_layout :: footer}"></div>
|
---|
| 69 |
|
---|
| 70 | </footer>
|
---|
| 71 | </body></html> |
---|