37 lines
914 B
HTML
37 lines
914 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Chess.com PGN Downloader</title>
|
||
|
<style>
|
||
|
body {
|
||
|
font-family: Arial, sans-serif;
|
||
|
text-align: center;
|
||
|
margin: 50px;
|
||
|
}
|
||
|
#usernameInput {
|
||
|
padding: 8px;
|
||
|
font-size: 16px;
|
||
|
}
|
||
|
#downloadButton {
|
||
|
padding: 10px;
|
||
|
font-size: 18px;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Chess.com PGN Downloader</h1>
|
||
|
|
||
|
<label for="usernameInput">Enter Chess.com Username:</label>
|
||
|
<input type="text" id="usernameInput" placeholder="Enter username">
|
||
|
|
||
|
<br><br>
|
||
|
|
||
|
<button id="downloadButton" onclick="downloadPGN()">Download PGN</button>
|
||
|
|
||
|
<script type="module" src="./player_games.js"></script>
|
||
|
</body>
|
||
|
</html>
|