25 lines
		
	
	
		
			839 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			839 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <!-- Config -->
 | |
| <?php include("../../php/config.php");?>
 | |
| 
 | |
| <!-- Header -->
 | |
| <?php include("../../incl/header.php");?>
 | |
| 
 | |
| <!-- Page Content -->
 | |
| <main class="container-fluid flex-fill">
 | |
|   <div class="container">
 | |
|     <h1><span class="important"><?php echo $title?></span> :</h1>
 | |
|     <p class="pt-3 text-center"><?php echo $description?></p>
 | |
|     <div class="text-center">
 | |
|       <img class="function-image" src="/img/function-image/armstrongNumber.png" alt="Nombre d'Armstrong">
 | |
|     </div>
 | |
|     <div class="form-group">
 | |
|       <label for="numberToTest">Entrez votre nombre :</label>
 | |
|           <input name="numberToTest" type="number" id="numberToTest" placeholder="(e.g : 153)" class="form-control">
 | |
|           <br> <br>
 | |
|       <p class="results text-center"></p>
 | |
|       </div>
 | |
|   </div>
 | |
| </main>
 | |
| 
 | |
| <!-- Footer -->
 | |
| <?php include("../../incl/footer.php");?>
 |