le 12/10/2009 à 11:37
alexandryne
Bonjour,
Je voudrais savoir comment je peux centrer le formulaire et "inscription" par rapport au formulaire, car tout est totalement à gauche. Merci. Voici le code :
Je voudrais savoir comment je peux centrer le formulaire et "inscription" par rapport au formulaire, car tout est totalement à gauche. Merci. Voici le code :
</head>
<body>
Inscription à l'espace membre :<br />
<form action="inscription.php" method="post">
<table>
<tr>
<tr>
<td align="right">Login</td>
<td>
<td align="left"><input type="text" name="login" value="<?php if (isset($_POST['login'])) echo htmlentities(trim($_POST['login'])); ?>"></td>
</tr>
<tr>
<tr>
<td align="right">Mot de Passe</td>
<td><td align="left"><input type="password" name="pass" value="<?php if (isset($_POST['pass'])) echo htmlentities(trim($_POST['pass'])); ?>"></td>
</tr>
<tr>
<td align="right">Confirmation du mot de passe</td>
<td><td align="left"><input type="password" name="pass_confirm" value="<?php if (isset($_POST['pass_confirm'])) echo htmlentities(trim($_POST['pass_confirm'])); ?>"></td>
</tr>
<tr>
<tr>
<td align="right">Adresse Email</td>
<td><td align="left"><input type="text" name="email" value="<?php if (isset($_POST['login'])) echo htmlentities(trim($_POST['email'])); ?>"></td>
</tr>
<tr>
<tr>
<td colspan="2"><input type="submit" name="inscription" value="Inscription">
</table>
</form>
<?php
if (isset($erreur)) echo '<br />',$erreur;
?>
</body>
</html>