flaskbaseapp/templates/modulo.html

15 lines
421 B
HTML

<!doctype html>
<html>
<body>
<title>Calcola l'area del rettangolo</title>
<p><form action="/area_rettangolo" method="post">
<label for="base">Lunghezza della base:</label>
<input type="text" name="base" /><br/>
<label for="altezza">Lunghezza dell'altezza:</label>
<input type="text" name="altezza" /><br/>
<input type="submit" name="Calcola" />
</form></p>
</body>
</html>