Hello! I have a problem. How to organize a dialogue with the user? So that he could enter a reply, and the server gave the answer: right or wrong. On the example of computing the determinant of a matrix. The following quote program listing.
<html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width"> <title>Sage Cell Server</title> <script src="https://sagecell.sagemath.org/static/jquery.min.js"></script> <script src="https://sagecell.sagemath.org/static/embedded_sagecell.js"></script> <script>$(function () { // Make the div with id 'mycell' a Sage cell sagecell.makeSagecell({inputLocation: '#mycell1', template: sagecell.templates.minimal, evalButtonText: 'Generate'}); sagecell.makeSagecell({inputLocation: 'div.compute', evalButtonText: 'Evaluate'}); sagecell.makeSagecell({inputLocation: '#mycell2', template: sagecell.templates.minimal, evalButtonText: 'Generate'});
});
</script>
</head>
<body>
Calculate the determinant
<div id="mycell1"><script type="text/x-sage">
A=random_matrix(ZZ, 2, 2, x=-5, y=5)
D=A.det()
A=show(A)
</script>
<div class="compute"><script type="text/x-sage"></script></div>
</body> </html>