26 lines
816 B
HTML
26 lines
816 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>FX Client Settings</title>
|
|
<link rel="shortcut icon" href="https://fxclient.cf/favicon.ico" type="image/x-icon">
|
|
<meta name="og:image" content="https://fxclient.cf/og.png"/>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<div class="mainbox">
|
|
<div class="title">
|
|
<p>FX Client Settings</p>
|
|
</div>
|
|
<div class="options">
|
|
<p id="dr"></p>
|
|
<button onclick="showWins()">Show Wins</button>
|
|
<button onclick="removeWins()">Reset Wins</button>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="index.js"></script>
|
|
</body>
|
|
</html> |