29 lines
		
	
	
		
			1020 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			1020 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <!-- Config -->
 | |
| <?php include("../../php/config.php");?>
 | |
| 
 | |
| <!-- Header -->
 | |
| <?php include("../../incl/header.php");?>
 | |
| 
 | |
| <!-- Page Content -->
 | |
| <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 id="roman-numerals" src="/img/function-image/convertRomanArabicNumbers.png" alt="Roman Numerals">
 | |
|   </div>
 | |
|   <div class="form-group">
 | |
| 		<label for="numbersArabic">Entrez votre nombre :</label>
 | |
|         <input name="numbersArabic" type="text" id="numbersArabic" placeholder="(e.g : 50')" class="form-control">
 | |
|         <div class="form-row text-center">
 | |
|             <div class="col-12">
 | |
|                 <br>
 | |
|                 <button type="submit" id="submitConvertRomanArabicNumbers" class="btn btn-dark text-center">Envoyer</button>
 | |
|             </div>
 | |
|         </div>
 | |
|         <br> <br>
 | |
| 		<p class="results text-center"></p>
 | |
|     </div>
 | |
| </div>
 | |
| 
 | |
| <!-- Footer -->
 | |
| <?php include("../../incl/footer.php");?>
 |