Second revision by Master Leon

This commit is contained in:
nemunaire 2007-11-03 12:00:00 +01:00
commit b8e951f59d
382 changed files with 3112 additions and 14815 deletions

View file

@ -1,7 +1,7 @@
<html>
<head>
<title>Login</title>
<link rel="stylesheet" media="screen" name="design" href="pages/design/design1.css">
<title>Halo battle</title>
<link rel="stylesheet" media="screen" name="design" href="pages/descriptions/diz/base.css">
<meta http-equiv="Content-Language" content="fr">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="Title" lang="fr" content="Bigorneaux VS Bulots">
@ -17,30 +17,43 @@
<meta name="Revisit-After" content="10 days">
<meta http-equiv="Cache-Control" content="no-cache">
<meta http-equiv="Pragma" content="no-cache">
</head>
<body>
<form method="post" action="verifLogin.php">
<table border="0" width="400" align="center">
<tr>
<td width="200"><b>Vôtre login</b></td>
<td width="200">
<input type="text" name="login" class="zone_texte" onFocus="this.value=''">
</td>
</tr>
<tr>
<td width="200"><b>Vôtre mot de passe<b></td>
<td width="200">
<input type="password" name="password" class="zone_texte" onFocus="this.value=''">
</td>
</tr>
<tr>
<td colspan="2">
<input type="submit" name="submit" value="Connexion" class="bouttom">
</td>
</tr>
<tr><td colspan="2"><a href="inscription.php">Inscription</a></td></tr>
</table>
</form>
<script language=javascript>
function clearText(thefield){
if (thefield.defaultValue == thefield.value)
thefield.value = "";
}
function initText(thefield){
if (thefield.value == "" || thefield.value == " ")
thefield.value = thefield.defaultValue;
}
</script>
</head>
<body>
<form method="post" action="verifLogin.php">
<table border="0" width="400" align="center">
<tr>
<td width="200"><b>Vôtre login</b></td>
<td width="200">
<input type=text name="login" onfocus="clearText(this)" onblur="initText(this)" value="Login" class="zone_texte">
</td>
</tr>
<tr>
<td width="200"><b>Vôtre mot de passe<b></td>
<td width="200">
<input type=password name="password" onfocus="clearText(this)" onblur="initText(this)" value="Password" class="zone_texte">
</td>
</tr>
<tr>
<td colspan="2">
<input type="submit" name="submit" value="Connexion" class="bouton">
</td>
</tr>
<tr><td colspan="2"><a href="inscription.php">Inscription</a></td></tr>
</table>
</form>
</body>
</html>