diff options
author | Ludovic Pouzenc <ludovic@pouzenc.fr> | 2018-06-30 11:23:45 +0200 |
---|---|---|
committer | Ludovic Pouzenc <ludovic@pouzenc.fr> | 2018-06-30 11:23:45 +0200 |
commit | 3c8d3719af0f77f8a01881b022e548d3a7d4604e (patch) | |
tree | 475c5ac9085dc4e62bc8095f906f211a0052c8de /maquette/test_html_tab.php | |
parent | 50b0ff7533657a8edb7a0d9645699559c50ea712 (diff) | |
download | 2007-AWOR-3c8d3719af0f77f8a01881b022e548d3a7d4604e.tar.gz 2007-AWOR-3c8d3719af0f77f8a01881b022e548d3a7d4604e.tar.bz2 2007-AWOR-3c8d3719af0f77f8a01881b022e548d3a7d4604e.zip |
Deuxième maquette 2007-02-06+19:18:54 - 2007-02-08+16:46:19
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> |