|
|
@ -14,16 +14,16 @@ |
|
|
|
<div class="form-chunck"> |
|
|
|
<label for="username">Utilisateur</label> |
|
|
|
<input class="input" type="text" name="username"> |
|
|
|
<?php /*if (isset($_GET['error']) AND $_GET['error'] == '2') { echo <<<HTML |
|
|
|
<small>Nom d'utilisateur incorrecte</small> |
|
|
|
HTML; }*/ ?> |
|
|
|
<?php if (isset($_GET['error']) AND $_GET['error'] == '2') { echo <<<HTML |
|
|
|
<p class="error">Nom d'utilisateur incorrecte</p> |
|
|
|
HTML; } ?> |
|
|
|
</div> |
|
|
|
<div class="form-chunck"> |
|
|
|
<label for="password">Mot de passe</label> |
|
|
|
<input class="input" type="password" name="password" id=""> |
|
|
|
<?php /*if (isset($_GET['error']) AND $_GET['error'] == '3') { echo <<<HTML |
|
|
|
<small>Mot de passe incorrecte</small> |
|
|
|
HTML; }*/ ?> |
|
|
|
<?php if (isset($_GET['error']) AND $_GET['error'] == '3') { echo <<<HTML |
|
|
|
<p class="error">Mot de passe incorrecte</p> |
|
|
|
HTML; } ?> |
|
|
|
</div> |
|
|
|
<input class="button" type="submit" value="Se connecter"> |
|
|
|
</form> |
|
|
@ -35,9 +35,9 @@ |
|
|
|
<div class="form-chunck"> |
|
|
|
<label for="username">Utilisateur</label> |
|
|
|
<input class="input" type="text" name="username"> |
|
|
|
<?php /*if (isset($_GET['error']) AND $_GET['error'] == '1') { echo <<<HTML |
|
|
|
<small>Nom d'utilisateur déjà pris</small> |
|
|
|
HTML; }*/ ?> |
|
|
|
<?php if (isset($_GET['error']) AND $_GET['error'] == '1') { echo <<<HTML |
|
|
|
<p class="error">Nom d'utilisateur déjà pris</p> |
|
|
|
HTML; } ?> |
|
|
|
</div> |
|
|
|
<div class="form-chunck"> |
|
|
|
<label for="password">Mot de passe</label> |
|
|
|