From 3a1ed3736c8048619dfb24b96a47e43694f19c9a Mon Sep 17 00:00:00 2001 From: Peter Gerwinski <peter.gerwinski@hs-bochum.de> Date: Thu, 14 Dec 2023 09:40:44 +0100 Subject: [PATCH] Beispiele 7.12.2023: school.html aufgeteilt --- 20231207/school-01.html | 10 ++++++++++ 20231207/{school.html => school-02.html} | 0 2 files changed, 10 insertions(+) create mode 100644 20231207/school-01.html rename 20231207/{school.html => school-02.html} (100%) diff --git a/20231207/school-01.html b/20231207/school-01.html new file mode 100644 index 0000000..f474776 --- /dev/null +++ b/20231207/school-01.html @@ -0,0 +1,10 @@ +<html> + <body> + <h3>Register new student</h3> + <form action="school-01.php" method="post"> + First name: <input type="text" name="first_name"><br> + Family name: <input type="text" name="family_name"><br> + <input type="submit"> + </form> + </body> +</html> diff --git a/20231207/school.html b/20231207/school-02.html similarity index 100% rename from 20231207/school.html rename to 20231207/school-02.html -- GitLab