56 lines
2.5 KiB
HTML
56 lines
2.5 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Blumenladen 333</title>
|
|
|
|
<meta charset = "UTF-8" />
|
|
<style type = "text/css">
|
|
@import url("css/auktionsansicht.css");
|
|
@import url("css/botButton.css");
|
|
@import url("css/wizardButton.css");
|
|
</style>
|
|
|
|
<script type = "text/javascript" src = "js/import/jquery-1.9.1.js"></script>
|
|
<script type = "text/javascript" src = "js/import/inheritance.js"></script>
|
|
<script type = "text/javascript" src = "js/import/es.js"></script>
|
|
<script type = "text/javascript" src = "js/import/te.js"></script>
|
|
<script type = "text/javascript" src = "js/import/tm.js"></script>
|
|
|
|
|
|
<script type = "text/javascript" src = "js/view/viewAuktion.js"></script>
|
|
<script type = "text/javascript" src = "js/view/viewLog.js"></script>
|
|
<script type = "text/javascript" src = "js/view/viewChargenmanager.js"></script>
|
|
<script type = "text/javascript" src = "js/view/viewCanvas.js"></script>
|
|
|
|
<script type = "text/javascript" src = "js/transfer/chargenloader.js"></script>
|
|
<script type = "text/javascript" src = "js/transfer/log.js"></script>
|
|
<script type = "text/javascript" src = "js/transfer/managerloader.js"></script>
|
|
|
|
<script type = "text/javascript" src = "js/bot/bot.js"></script>
|
|
<script type = "text/javascript" src = "js/bot/botButtonStyle.js"></script>
|
|
|
|
<script type = "text/javascript" src = "js/kaufen.js"></script>
|
|
<script type = "text/javascript" src = "js/wizard.js"></script>
|
|
<script type = "text/javascript" src = "js/main.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div align = "center" id = "content">
|
|
<canvas id = "canvas" width = "300" height = "300">Canvas</canvas>
|
|
|
|
<section id = "kaufen" onclick = kaufen('User')><center><h1>Kaufen</h1></center></section>
|
|
|
|
<section id = "aktuelleAuktion">aktuelle Auktion</section>
|
|
<section id = "naechsteAuktion">nächste Auktion</section>
|
|
<section id = "letzteAuktion">letzte Auktion</section>
|
|
|
|
<section id = "simManager">
|
|
<p><button id = "bot1Button" class = "botButtonInactiveStyle" onclick = botStart(1)>Bot 1</button></p>
|
|
<p><button id = "bot2Button" class = "botButtonInactiveStyle" onclick = botStart(2)>Bot 2</button></p>
|
|
<p><button class = "bigbutton" onclick = viewChargenubersicht()>Chargen-Manager</button></p>
|
|
<p><button class = "bigbutton" onclick = viewLogfile()>Log-Files</button></p>
|
|
</section>
|
|
</div>
|
|
<input type = "hidden" id = "los_nr" value = "-1">
|
|
</body>
|
|
</html> |