trynottostarve/index.html

36 lines
1.2 KiB
HTML

<!doctype html>
<html lang="de">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="bootstrap.min.css">
<script src="jquery-3.4.1.min.js"></script>
<script src="bootstrap.min.js"></script>
<script src="script.js"></script>
<title>Try not to starve!</title>
</head>
<body>
<div class="container text-center" style="margin-top: 30px; margin-bottom: 30px;">
<div class="row">
<div class="offset-md-3 col-md-6">
<h1>Try not to starve!</h1>
<div class="card">
<div class="card-body">
<div id="recipe"></div>
</div>
<div class="card-footer text-muted">
<button class="btn btn-block btn-primary btn-lg" onclick="generateRecipe();">Neu</button>
</div>
</div>
<div class="alert alert-danger" role="alert" id="error" style="display: none;">
</div>
<small>by <a href="https://clerie.de">clerie</a>, agpl-3.0, code on <a href="https://github.com/clerie/trynottostarve">github</a> :c</small>
</div>
</div>
</div>
</body>
</html>