57 lines
2.2 KiB
HTML
57 lines
2.2 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>Inscription</title>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<link href="css/stylesheet.css" rel="stylesheet" type="text/css"/>
|
||
|
<link href="css/jquery-ui.min.css" rel="stylesheet" type="text/css"/>
|
||
|
<script src="js/libs/jquery/jquery.js" type="text/javascript"></script>
|
||
|
<script src="js/libs/jquery-ui.min.js" type="text/javascript"></script>
|
||
|
<script src="js/main.js" type="text/javascript"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div>
|
||
|
<form method="post">
|
||
|
<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 for="ddn">Date de naissance</label>
|
||
|
<input type="text" name="ddn" id="ddn">
|
||
|
<br/>
|
||
|
<label for="adresse">Adresse</label>
|
||
|
<input type="text" name="adresse" id="adresse">
|
||
|
<br/>
|
||
|
<label for="cp">Code Postal</label>
|
||
|
<input type="text" name="cp" id="cp" maxlength="5">
|
||
|
<br/>
|
||
|
<label for="ville">Ville</label>
|
||
|
<select name="ville" class="ville" id="ville">
|
||
|
|
||
|
</select>
|
||
|
<br/>
|
||
|
<label for="mail">Email</label>
|
||
|
<input type="text" name="mail" id="mail">
|
||
|
<br/>
|
||
|
<label for="photo">Photo</label>
|
||
|
<input type="file" name="photo" id="photo">
|
||
|
<br/>
|
||
|
<label for="ddi">Discipline d'inscription</label>
|
||
|
<select name="ddi" id="ddi" class="ddi">
|
||
|
|
||
|
</select>
|
||
|
<br/>
|
||
|
<button type="submit">Envoyer</button>
|
||
|
</form>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|