15 lines
310 B
HTML
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>
|