25 lines
938 B
HTML
25 lines
938 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>{{ title }}</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link href="/static/math.css" rel="stylesheet" media="screen">
|
|
</head>
|
|
<body>
|
|
<section id="content">
|
|
<div class="number question">
|
|
<span class="number" id="first">0</span>
|
|
<span class="number" id="operation">+</span>
|
|
<span class="number" id="second">0</span>
|
|
</div>
|
|
<div class="number answer">
|
|
<input id="answer" type="number" size="2" class="number"></div>
|
|
<input id="check" type="submit" name="check" value="check"/>
|
|
</div>
|
|
</section>
|
|
<script src="/static/jquery-2.0.0.min.js"></script>
|
|
<script src="/static/django-csrf.js"></script>
|
|
<script src="/static/math.js"></script>
|
|
</body>
|
|
</html>
|