17 lines
577 B
PHP
17 lines
577 B
PHP
<?php $this->title = " Connexion" ?>
|
|
|
|
<p>Vous devez être connecté pour accéder au site.</p>
|
|
|
|
<form action="connexion/logOn" method="post">
|
|
<input name="login" type="text" placeholder="Entrez votre login" required autofocus>
|
|
<input name="password" type="password" placeholder="Entrez votre mot de passe" required>
|
|
<button type="submit">Connexion</button>
|
|
</form>
|
|
|
|
<form method="get" action="connexion/registration">
|
|
<button type="submit">Inscription</button>
|
|
</form>
|
|
|
|
<?php if (isset($msgError)): ?>
|
|
<p><?= $msgError ?></p>
|
|
<?php endif; ?>
|