mirror of
https://github.com/vkaelin/LeagueStats.git
synced 2026-03-25 12:57:28 +00:00
46 lines
1.5 KiB
HTML
46 lines
1.5 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||
|
|
<title>Riot Api Node</title>
|
||
|
|
<!-- Bootstrap CSS -->
|
||
|
|
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
|
||
|
|
<!-- Custom CSS -->
|
||
|
|
<link rel="stylesheet" href="public/style.css">
|
||
|
|
</head>
|
||
|
|
|
||
|
|
<body>
|
||
|
|
<div class="search">
|
||
|
|
<div class="container">
|
||
|
|
|
||
|
|
<form class="form-inline" id="changeName" method="GET">
|
||
|
|
<input type="text" class="form-control mb-2 mr-sm-2" id="name" name="playerName" placeholder="Pseudo du Joueur">
|
||
|
|
<button type="submit" class="btn btn-primary mb-2">Chercher</button>
|
||
|
|
</form>
|
||
|
|
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="container">
|
||
|
|
<div class="player">
|
||
|
|
<div class="player__pp"></div>
|
||
|
|
<h1 class="player__name">Default name</h1>
|
||
|
|
<h3 class="player__level">Default level</h3>
|
||
|
|
<h3 class="player__rank">Default division</h3>
|
||
|
|
<div class="player__rank-img"></div>
|
||
|
|
<h3 class="player__ratio">Default ratio</h3>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
|
||
|
|
<!-- Optional JavaScript -->
|
||
|
|
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
|
||
|
|
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
|
||
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
|
||
|
|
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script>
|
||
|
|
<script src="public/client.js"></script>
|
||
|
|
</body>
|
||
|
|
|
||
|
|
</html>
|