Spaces:
Runtime error
Runtime error
File size: 538 Bytes
0614e7d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
<!DOCTYPE html>
<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> |