diff options
Diffstat (limited to 'maquette/test_html_tab.php')
-rw-r--r-- | maquette/test_html_tab.php | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/maquette/test_html_tab.php b/maquette/test_html_tab.php new file mode 100644 index 0000000..853a87e --- /dev/null +++ b/maquette/test_html_tab.php @@ -0,0 +1,31 @@ +<?php echo '<?xml version="1.0" encoding="ISO-8859-1"?>'."\n" ?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr"> + <head> + <title>AWOR - Identification</title> + <!--<link rel="stylesheet" type="text/css" href="main.css" />--> + </head> + <body class="content"> + <p> + <?php echo '<form id="auth" method="get" action="' . $_GLOBAL['php_self'] . '">' . "\n"; ?> + <input name="champ_simple1" type="text" size="20" tabindex="1" /> + <input name="champ_simple21" type="text" size="20" tabindex="1" /> + <input name="compte[nom]" type="text" size="20" tabindex="1" /> + <input name="compte[prenom] type="text" size="20" tabindex="1" /> + <input name="compte[date][annee]" type="text" size="20" tabindex="1" /> + <input name="compte[date][mois]" type="text" size="20" tabindex="1" /> + <input name="compte[date][jour]" type="text" size="20" tabindex="1" /> + <input name="compte[date][heure]" type="text" size="20" tabindex="1" /> + <input name="compte[date][min]" type="text" size="20" tabindex="1" /> + <input name="compte[date][sec]" type="text" size="20" tabindex="1" /> + <input type="submit" value="Valider" /> + </form> + </p> + + <p> + <pre> + <?php print_r($_GET) ?> + </pre> + </p> + </body> +</html> |