12 lines
432 B
PHP
12 lines
432 B
PHP
<h1>Se connecter</h1>
|
|
<form action="authentifier" method="POST">
|
|
<label for="email">Email:</label>
|
|
<input type="email" id="email" name="email" required>
|
|
<label for="password">Mot de passe:</label>
|
|
<input type="password" id="password" name="password" required>
|
|
<button type="submit">Connexion</button>
|
|
</form>
|
|
|
|
<?php if(isset($error_msg)): ?>
|
|
<div class="error-message"><?= $error_msg ?></div>
|
|
<?php endif; ?>
|