Update user.html
This commit is contained in:
65
user.html
Normal file
65
user.html
Normal file
@@ -0,0 +1,65 @@
|
||||
<!doctype html>
|
||||
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
|
||||
<title>Waschmarken.io</title>
|
||||
<meta name="description" content="Waschmarken Scoreboard">
|
||||
|
||||
<link rel="stylesheet" href="../../static/css/normalize.css">
|
||||
<link rel="stylesheet" href="../../static/css/sakura-dark.css">
|
||||
|
||||
<style>
|
||||
.heading {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#thetable {
|
||||
margin-bottom : 2rem;
|
||||
}
|
||||
.biceps {
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
}
|
||||
</style>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<h1 class="heading">Waschmarken Scoreboard</h1>
|
||||
|
||||
<h2><span id="greeting">Henlo</span></h2>
|
||||
|
||||
<table id="thetable">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Current Washing Coins:</td>
|
||||
<td id="currentcoins">42</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Maximally Available:</td>
|
||||
<td>69</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<div class="biceps">
|
||||
<div>
|
||||
<button>Click me</button>
|
||||
</div>
|
||||
<div>
|
||||
<input type="number" value = "42" >
|
||||
<button>Click me</button>
|
||||
</div>
|
||||
<div>
|
||||
<button>Click me</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="../../static/js/user.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user