36 lines
906 B
PHP
36 lines
906 B
PHP
<?php
|
|
/*
|
|
* DS PHP
|
|
* Vue page index - page d'accueil
|
|
*
|
|
* Copyright 2016, Eric Dufour
|
|
* http://techfacile.fr
|
|
*
|
|
* Licensed under the MIT license:
|
|
* http://www.opensource.org/licenses/MIT
|
|
*
|
|
*/
|
|
// En tête de page
|
|
?>
|
|
<?php require_once(PATH_VIEWS.'header.php');?>
|
|
|
|
<!-- Zone message d'alerte -->
|
|
<?php require_once(PATH_VIEWS.'alert.php');?>
|
|
|
|
<!-- Début de la page -->
|
|
|
|
<!-- Form -->
|
|
<form method="POST">
|
|
<label for="username">Usernamne: </label>
|
|
<input id="username" name="username" type="text" maxlength="64"> <br />
|
|
<label for="nb">nb: </label>
|
|
<input id="nb" name="nb" type="number" min="0" max="100"> <br />
|
|
<label for="word">mot: </label>
|
|
<input id="word" name="word" type="text" maxlength="64"> <br />
|
|
<input type="submit" value="Save">
|
|
</form>
|
|
|
|
<!-- Fin de la page -->
|
|
|
|
<!-- Pied de page -->
|
|
<?php require_once(PATH_VIEWS.'footer.php');
|