feat: created file for registration of actions and a file for functions; started first tests with form for work entries

This commit is contained in:
Ioannis20x
2025-07-07 07:04:13 +00:00
parent d772a6dc29
commit 3479fd9e1d
4 changed files with 60 additions and 46 deletions

23
registration.php Normal file
View File

@@ -0,0 +1,23 @@
<form name="entryform" id="entryform" method="post" action="">
<p>
<label>
input:
</label>
</p>
<label for="cars">Choose a car:</label>
<select name="cars" id="cars" form="carform">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="opel">Opel</option>
<option value="audi">Audi</option>
</select>
<p>
<label>
<input type="submit" name="button" id="button" value="Submit">
</label>
</p>
</form>