49 lines
1.4 KiB
PHP
49 lines
1.4 KiB
PHP
<h1><?=$title?></h1>
|
|
<p>Her kan du oppdatere informasjonen om laget</p>
|
|
<form method="post" autocomplete="off">
|
|
|
|
<label for="name">Navn:</label>
|
|
<br>
|
|
<input type="text" id="name" name="name" value="<?=htmlspecialchars($team->name)?>" maxlength="32">
|
|
<br>
|
|
|
|
|
|
<label for="company">Bedrift:</label>
|
|
<br>
|
|
<input type="text" id="company" name="company" value="<?=htmlspecialchars($team->company)?>" maxlength="32">
|
|
<br>
|
|
|
|
|
|
<label for="cardnumber">Kortnummer:</label>
|
|
<br>
|
|
<input type="text" id="cardnumber" name="cardnumber" value="<?=htmlspecialchars($team->cardnumber)?>" maxlength="32">
|
|
<br>
|
|
|
|
|
|
<label for="leader">Leder:</label>
|
|
<br>
|
|
<input type="text" id="leader" name="leader" value="<?=htmlspecialchars($team->leader)?>" maxlength="32">
|
|
<br>
|
|
|
|
|
|
<label for="phone">Telefon:</label>
|
|
<br>
|
|
<input type="number" id="phone" name="phone" value="<?=htmlspecialchars($team->phone)?>" maxlength="32">
|
|
<br>
|
|
|
|
|
|
<label for="participants">Deltagere:</label>
|
|
<br>
|
|
<input type="number" id="participants" name="participants" value="<?=htmlspecialchars($team->participants)?>" maxlength="32">
|
|
<br>
|
|
|
|
|
|
<label for="number">Runder:</label>
|
|
<br>
|
|
<input type="number" id="rounds" name="rounds" value="<?=htmlspecialchars($team->rounds)?>" maxlength="32">
|
|
<br>
|
|
|
|
<br>
|
|
<input type="submit" value="Lagre">
|
|
<span>[ <a class="danger" href="index.php">Avbryt</a> ]</span>
|
|
</form>
|