This commit is contained in:
2026-04-01 08:25:18 +02:00
parent 19afef54e6
commit d13f66226b
26 changed files with 426 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
input[type="text"]{
display:inline;
width:auto;
}
+2
View File
@@ -0,0 +1,2 @@
<?php
// TODO
+23
View File
@@ -0,0 +1,23 @@
<?php
include 'include/controller.php';
?>
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.classless.min.css"
/>
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<main>
<h4>Table de multiplication</h4>
<form method="GET">
<input type=number name="table" placeholder="table">
<button type="submit">ENVOYER</button>
</form>
</main>
</body>
</html>