You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.4 KiB
57 lines
1.4 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<title>30DaysOfJavaScript: 28 Day </title>
|
|
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet" />
|
|
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v6.2.1/css/all.css">
|
|
<link rel="stylesheet" href="./css/style.css">
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<main>
|
|
<div class="container">
|
|
<h1>30 Days of JavaScript Challenge Leaderboard</h1>
|
|
|
|
<div class="leaderboard">
|
|
<div class="form-add-player">
|
|
<input type="text" id="inputname">
|
|
<input type="text" id="inputsurname">
|
|
<input type="text" id="inputcountry">
|
|
<input type="text" id="inputscore">
|
|
<button id="addsubmit">Add Player</button>
|
|
</div>
|
|
|
|
<p id="errormessage">error message</p>
|
|
|
|
<div class="content">
|
|
|
|
</div>
|
|
<!-- <div class="board">
|
|
<input type="hidden" name="id" value="1">
|
|
<div class="upname">
|
|
<div class="player">
|
|
<p class="name">Martha Yohanes</p>
|
|
<p class="time">JAN 30, 2020 01:09</p>
|
|
</div>
|
|
</div>
|
|
<div class="country">Finland</div>
|
|
<div class="score">85</div>
|
|
<div class="options">
|
|
<button class="delete"><i class="fa fa-trash"></i></button>
|
|
<button class="plus">+5</button>
|
|
<button class="minus">-5</button>
|
|
</div>
|
|
</div> -->
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
<script src="./data/countries_data.js"></script>
|
|
<script src="./js/moment.min.js"></script>
|
|
<script src="./js/main.js"></script>
|
|
|
|
</body>
|
|
|
|
</html> |