89 lines
2.4 KiB
PHP
89 lines
2.4 KiB
PHP
<?php
|
|
session_start();
|
|
require_once 'config.php';
|
|
|
|
$message = '';
|
|
|
|
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
|
|
$username = trim($_POST['username'] ?? '');
|
|
$email = trim($_POST['email'] ?? '');
|
|
$password = $_POST['password'] ?? '';
|
|
|
|
if ($username && $email && $password) {
|
|
$hashedPassword = password_hash($password, PASSWORD_BCRYPT);
|
|
$role = 'auteur'; // ✅ tout nouvel utilisateur est un auteur
|
|
|
|
try {
|
|
$stmt = $pdo->prepare("INSERT INTO utilisateurs (username, email, password, role) VALUES (?, ?, ?, ?)");
|
|
$stmt->execute([$username, $email, $hashedPassword, $role]);
|
|
header("Location: login.php");
|
|
exit;
|
|
} catch (PDOException $e) {
|
|
$message = "❌ Erreur lors de l'inscription : " . $e->getMessage();
|
|
}
|
|
} else {
|
|
$message = "⚠️ Tous les champs sont obligatoires.";
|
|
}
|
|
}
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Créer un compte ✨</title>
|
|
<style>
|
|
body {
|
|
font-family: 'Poppins', sans-serif;
|
|
background: linear-gradient(120deg, #ffe0ec, #fff6f8);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
margin: 0;
|
|
}
|
|
.container {
|
|
background: white;
|
|
padding: 40px;
|
|
border-radius: 15px;
|
|
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
|
|
width: 380px;
|
|
text-align: center;
|
|
}
|
|
input {
|
|
width: 90%;
|
|
padding: 10px;
|
|
margin: 10px 0;
|
|
border: 1px solid #ddd;
|
|
border-radius: 8px;
|
|
}
|
|
button {
|
|
background: linear-gradient(45deg, #ff69b4, #ffa07a);
|
|
border: none;
|
|
color: white;
|
|
padding: 10px 20px;
|
|
border-radius: 20px;
|
|
cursor: pointer;
|
|
font-weight: 600;
|
|
width: 95%;
|
|
}
|
|
button:hover { opacity: 0.9; }
|
|
.message { color: red; margin-bottom: 10px; }
|
|
a { color: #ff69b4; text-decoration: none; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h2>Créer un compte ✨</h2>
|
|
<?php if ($message): ?><div class="message"><?= $message ?></div><?php endif; ?>
|
|
<form method="POST">
|
|
<input type="text" name="username" placeholder="Nom d'utilisateur" required><br>
|
|
<input type="email" name="email" placeholder="Email" required><br>
|
|
<input type="password" name="password" placeholder="Mot de passe" required><br>
|
|
<button type="submit">S'inscrire</button>
|
|
</form>
|
|
<p>Déjà inscrit ? <a href="login.php">Connectez-vous</a></p>
|
|
</div>
|
|
</body>
|
|
</html>
|