Skip to content

Commit

Permalink
multiplayerRanking style updated
Browse files Browse the repository at this point in the history
  • Loading branch information
RicardoDiNu committed Apr 27, 2024
1 parent 34108c5 commit e71f686
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions src/main/resources/templates/ranking/multiplayerRanking.html
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://thymeleaf.org">
<head th:replace="~{fragments/head}"/>
<!DOCTYPE html SYSTEM "http://www.thymeleaf.org/dtd/xhtml1-strict-thymeleaf-spring4-4.dtd">
<html lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
<head th:replace="~{fragments/head}"></head>
<body class="d-flex flex-column min-vh-100">
<nav th:replace="~{fragments/nav}"/>

<link th:href="@{/css/multiplayer.css}" rel="stylesheet" type="text/css"/>
<canvas th:replace="~{fragments/background}"></canvas>
<nav th:replace="~{fragments/nav}"></nav>

<div class="container" style="text-align: center">
<h2 th:text ="#{multi.info}"></h2>
<code id="lobbyCode" th:text="${code}"></code>

<div class="container">
<div class="table-responsive">
<h2 th:text ="#{multi.info}"></h2>
<h3 th:text="${code}"></h3>
<ul id="playerList">
</ul>
<ul id="playerList"></ul>
</div>
</div>
<div class="text-center">

<a th:href="@{'/'}">
<button id="createBtn" type="button" class="btn btn-custom" th:text="#{multi.menu}"></button>
<button id="createBtn" type="button" class="btn btn-custom btn-block mb-2" th:text="#{multi.menu}"></button>
</a>
</div>

<footer th:replace="~{fragments/footer}"/>

</body>
</html>

Expand Down

0 comments on commit e71f686

Please sign in to comment.