2023-03-17 12:03:22 +01:00

15 lines
310 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Formulaire César</title>
</head>
<body>
<form action="http://localhost:8080/cesar/1" method="GET">
<label for="val">Texte à chiffrer :</label>
<input type="text" id="val" name="val" required>
<br>
<input type="submit" value="Chiffrer">
</form>
</body>
</html>