blob: 853a87e8a35c2d098067b5cf996e0099be8510d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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>
|