cavepedia/src/templates/index.html.tmpl

36 lines
802 B
Cheetah

<!DOCTYPE html>
<html>
<head>
<title>Cavepedia</title>
<link rel="stylesheet" href="/static/cavepedia.css">
</head>
<body>
<h1>Welcome to Cavepedia</h1>
{{if .TryAgain}}
<h3>Incorrect! Please try again!</h3>
{{else}}
<h3>Please complete this quiz to continue</h3>
{{end}}
<form action="/quiz" method="post">
A.I. <input type="text" id="answer" placeholder="Answer..." name="answer">
<button type="submit">Submit</button>
</form>
<!-- bat -->
<div class="bat-container pin-bottom">
<div class="bat-wrapper">
<div class="bat js-bat">
<div class="bat-leg-1"></div>
<div class="bat-leg-2"></div>
</div>
</div>
<div class="bat-shadow"></div>
</div>
<script>
document.getElementById('answer').focus();
</script>
</body>
</html>