conversor.html 443 Bytes
Newer Older
roshka committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Convertidor</title>
</head>
<body>
	<h1>Convertidor de Temperatura</h1>
	<form action="/Poker/conversor" method="post">
		<select name="tipo_temperatura">
  			<option value="celcius">C</option>		
			<option value="fahrenheit">F</option>
			<option value="kelvin">K</option>
		</select>
		<input type="text" name="valor_temperatura">
		<input type="submit"/>
	</form>
</body>
</html>