45 lines
1.7 KiB
HTML
45 lines
1.7 KiB
HTML
<!doctype html>
|
|
<html class="no-js" lang="">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>ClansOfContracts</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
|
|
<body onload="init()">
|
|
<script src="index.js"></script>
|
|
|
|
<div id="costs" class="filters">
|
|
<span>Costs:</span>
|
|
<input id="sheep" type="checkbox" checked="checked"/><label for="sheep">Sheep</label>
|
|
<input id="cow" type="checkbox" checked="checked"/><label for="cow">Cow</label>
|
|
<input id="wool" type="checkbox" checked="checked"/><label for="wool">Wool</label>
|
|
<input id="bread" type="checkbox" checked="checked"/><label for="bread">Bread</label>
|
|
<input id="cheese" type="checkbox" checked="checked"/><label for="cheese">Cheese</label>
|
|
<input id="whisky" type="checkbox" checked="checked"/><label for="whisky">Whisky</label>
|
|
</div>
|
|
<div id="rewards" class="filters">
|
|
<span>Rewards:</span>
|
|
<input id="cotton" type="checkbox" checked="checked"/><label for="cotton">Cotton</label>
|
|
<input id="tobacco" type="checkbox" checked="checked"/><label for="tobacco">Tobacco</label>
|
|
<input id="sugarCane" type="checkbox" checked="checked"/><label for="sugarCane">Sugar cane</label>
|
|
<input id="upgrade" type="checkbox" checked="checked"/><label for="upgrade">Upgrade</label>
|
|
<input id="expansion" type="checkbox" checked="checked"/><label for="expansion">Expansion</label>
|
|
<input id="gold" type="checkbox" checked="checked"/><label for="gold">Gold</label>
|
|
<input id="hops" type="checkbox" checked="checked"/><label for="hops">Hops</label>
|
|
</div>
|
|
|
|
<div id="included">
|
|
</div>
|
|
<hr style="clear: left;height:5px;border-width:0;color:gray;background-color:darkgoldenrod"/>
|
|
<div id="excluded">
|
|
</div>
|
|
|
|
<script>
|
|
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|