This repository has been archived on 2023-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
web/app/view/pages/race/teamtable/edit/update.php

43 lines
1.3 KiB
PHP
Raw Normal View History

2022-03-07 10:11:33 +00:00
<h1><?=$title?></h1>
2022-02-14 01:52:59 +00:00
<p>Her kan du oppdatere informasjonen om laget</p>
<form method="post" autocomplete="off">
2022-02-09 15:59:20 +00:00
2022-03-07 06:13:17 +00:00
<label for="name">Navn:</label>
2022-02-09 15:59:20 +00:00
<br>
2022-03-07 06:13:17 +00:00
<input type="text" id="name" name="name" value="<?=htmlspecialchars($team->name)?>" maxlength="32">
2022-03-07 10:11:33 +00:00
<br>
2022-02-09 15:59:20 +00:00
2022-03-07 10:11:33 +00:00
<label for="company">Bedrift:</label>
<br>
<input type="text" id="company" name="company" value="<?=htmlspecialchars($team->company)?>" maxlength="32">
2022-02-09 15:59:20 +00:00
<br>
2022-03-07 06:13:17 +00:00
2022-03-07 10:11:33 +00:00
<label for="cardnumber">Kortnummer:</label>
2022-02-09 15:59:20 +00:00
<br>
2022-03-07 10:11:33 +00:00
<input type="text" id="cardnumber" name="cardnumber" value="<?=htmlspecialchars($team->cardnumber)?>" maxlength="32">
<br>
2022-03-07 06:13:17 +00:00
2022-02-09 15:59:20 +00:00
2022-03-07 10:11:33 +00:00
<label for="leader">Leder:</label>
<br>
<input type="text" id="leader" name="leader" value="<?=htmlspecialchars($team->leader)?>" maxlength="32">
2022-02-09 15:59:20 +00:00
<br>
2022-03-07 06:13:17 +00:00
2022-03-07 10:11:33 +00:00
<label for="phone">Telefon:</label>
<br>
<input type="number" id="phone" name="phone" value="<?=htmlspecialchars($team->phone)?>" maxlength="32">
2022-02-09 15:59:20 +00:00
<br>
2022-03-07 06:13:17 +00:00
2022-03-07 10:11:33 +00:00
<label for="participants">Deltagere:</label>
<br>
<input type="number" id="participants" name="participants" value="<?=htmlspecialchars($team->participants)?>" maxlength="32">
2022-02-09 15:59:20 +00:00
<br>
2022-03-07 06:13:17 +00:00
2022-02-09 15:59:20 +00:00
<br>
2022-02-14 01:52:59 +00:00
<input type="submit" value="Lagre">
<span>[&nbsp;<a class="danger" href="index.php">Avbryt</a>&nbsp;]</span>
2022-02-09 15:59:20 +00:00
</form>