43 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.3 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 id="phone" name="phone" value="<?=htmlspecialchars($team->phone)?>" maxlength="20">
 | |
|     <br>
 | |
| 
 | |
| 
 | |
|     <label for="participants">Deltagere:</label>
 | |
|     <br>
 | |
|     <input type="number" id="participants" name="participants" value="<?=htmlspecialchars($team->participants)?>" max="9999">
 | |
|     <br>
 | |
| 
 | |
|     <br>
 | |
|     <input type="submit" value="Lagre">
 | |
|     <span>[ <a class="danger" href="index.php">Avbryt</a> ]</span>
 | |
| </form>
 |