This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
FunctionProject/views/function-views/convertTemperature.php

33 lines
1.2 KiB
PHP
Raw Normal View History

2019-08-28 14:16:47 +02:00
<!-- Config -->
<?php include("../../php/config.php");?>
2019-08-16 12:05:56 +02:00
<!-- Header -->
<?php include("../../incl/header.php");?>
<!-- Page Content -->
2019-12-28 22:36:09 +01:00
<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/convertTemperature.png" alt="Thermomètre">
2019-08-16 12:05:56 +02:00
</div>
<form id="convertTemperatureForm" action="#" method="POST">
<div class="form-group">
<label for="temperatureValue">Entrez la température :</label>
<input name="temperatureValue" type="text" id="temperatureValue" placeholder="(e.g : 23°C)" class="form-control">
<br>
<div class="form-row text-center">
<div class="col-12">
<button type="submit" id="submitConvertTemperature" class="btn btn-dark text-center">Envoyer</button>
</div>
</div>
<br> <br>
<p class="results text-center"></p>
</div>
</form>
2019-12-28 22:36:09 +01:00
</div>
</main>
2019-08-16 12:05:56 +02:00
<!-- Footer -->
<?php include("../../incl/footer.php");?>