121 přidán editace zaka, assets formular zak
This commit is contained in:
14
www2databaze/assets/formular-zak.php
Normal file
14
www2databaze/assets/formular-zak.php
Normal file
@ -0,0 +1,14 @@
|
||||
<form method="POST">
|
||||
<input type="text" name="first_name" placeholder="Křestní jméno" required value="<?= htmlspecialchars($first_name )?>">
|
||||
<br>
|
||||
<input type="text" name="second_name" placeholder="Příjmení" value="<?= htmlspecialchars($second_name) ?>" required>
|
||||
<br>
|
||||
<input type="number" name="age" placeholder="Věk" min="10" value="<?= htmlspecialchars($age)?>" required>
|
||||
<br>
|
||||
<!-- text area pamatovátko vložit mezi tagy -->
|
||||
<textarea name="life" placeholder="Podrobnosti o žákovi" required><?= htmlspecialchars($life)?></textarea>
|
||||
<br>
|
||||
<input type="text" name="college" placeholder="Kolej" value="<?= htmlspecialchars($college) ?>" required>
|
||||
<br>
|
||||
<input type="submit" value="Uložit">
|
||||
</form>
|
Reference in New Issue
Block a user