16 lines
588 B
HTML
16 lines
588 B
HTML
<!DOCTYPE html>
|
|
<html lang="fr"><head>
|
|
<meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="../css/admin.css">
|
|
<title>Login</title></head>
|
|
<body>
|
|
<div id="page-login" class="page active">
|
|
<div class="login-wrap">
|
|
<h2>Backoffice</h2>
|
|
<input type="password" id="login-pwd" placeholder="Mot de passe" />
|
|
<p class="login-err" id="login-err">Mot de passe incorrect.</p>
|
|
<button class="btn btn-gold" onclick="doLogin()">Accéder</button>
|
|
</div>
|
|
</div>
|
|
<script src="../js/admin.js"></script>
|
|
</body></html> |