Spaces:
Runtime error
Runtime error
<html lang="pt-br"> | |
<head><title>Simulado USP</title></head> | |
<body> | |
<h1>Simulado</h1> | |
<button onclick="loadSimulado()">Carregar</button> | |
<div id="questions"></div> | |
<script> | |
async function loadSimulado() { | |
const response = await fetch('/simulado?num_questions=5'); | |
const data = await response.json(); | |
document.getElementById('questions').innerHTML = data.simulado.map(q => `<p>${q.question}</p><ul><li>A)</li><li>B)</li><li>C)</li><li>D)</li></ul>`).join(''); | |
} | |
</script> | |
</body> | |
</html> |