27 lines
645 B
HTML
27 lines
645 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Vin LotteriX</title>
|
|
<script src="model.js"></script>
|
|
<script src="view.js"></script>
|
|
<script src="controller.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app"></div>
|
|
<script>
|
|
updateView();
|
|
function updateView() {
|
|
const page = model.app.page;
|
|
if (page === 'home') updateViewHome();
|
|
else if (page === 'rules') updateViewRules();
|
|
else if (page === 'list') updateViewList();
|
|
|
|
}
|
|
</script>
|
|
</body>
|
|
|
|
</html> |