57 lines
2.4 KiB
HTML
57 lines
2.4 KiB
HTML
<!DOCTYPE html>
|
|
<!--
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
-->
|
|
<html>
|
|
<head>
|
|
<title>Poids idéal</title>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link href="css/main.css" type="text/css" rel="stylesheet">
|
|
<script src="js/libs/jquery/jquery.js" type="text/javascript"></script>
|
|
<script src="js/main.js" type="text/javascript"></script>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<form id="poidsIdeal">
|
|
<fieldset id="donnees">
|
|
<legend>Entrez vos données</legend>
|
|
<label for="nom">Nom</label>
|
|
<input type="text" name="nom" id="nom"/>
|
|
<br/>
|
|
<label for="prenom">Prénom</label>
|
|
<input type="text" name="prenom" id="prenom"/>
|
|
<br/>
|
|
<label>Sexe</label>
|
|
<input type="checkbox" name="homme" id="homme">Homme
|
|
<input type="checkbox" name="femme" id="femme">Femme
|
|
<br/>
|
|
<label for="age">Age</label>
|
|
<input type="number" min="0" max="150" name="age" id="age">
|
|
<br/>
|
|
<label for="poids">Poids</label>
|
|
<input type="number" min="0" max="500" name="poids" id="poids">
|
|
<br/>
|
|
<label for="taille">Taille</label>
|
|
<input type="number" min="0.00" max="3.00" step="0.01" name="taille" id="taille">
|
|
<br/>
|
|
</fieldset>
|
|
<input type="button" name="submit" id="submit" value="Suite"/>
|
|
|
|
<fieldset id="resultat">
|
|
<legend>Résultats</legend>
|
|
<input type="button" name="devine" id="devine" value="Poids idéal de Devine">
|
|
<br/>
|
|
<input type="button" name="lorentz" id="lorentz" value="Poids idéal de Lorentz">
|
|
<br/>
|
|
<input type="button" name="lorentzAge" id="lorentzAge" value="Poids idéal de Lorentz / age">
|
|
<div id="divResult"></div>
|
|
</fieldset>
|
|
</form>
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|