mirror of
https://github.com/arthur-pbty/streaming-site.git
synced 2026-06-03 23:36:26 +02:00
31 lines
1.1 KiB
HTML
31 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Inscription</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Inscription</h1>
|
|
<nav>
|
|
<a href="index.html">Accueil</a>
|
|
<a href="login.html" id="login-link">Connexion</a>
|
|
<a href="register.html" id="register-link">Inscription</a>
|
|
<button id="logout-button" style="display: none;">Déconnexion</button>
|
|
</nav>
|
|
</header>
|
|
<main>
|
|
<form id="register-form" class="auth-form">
|
|
<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">Inscription</button>
|
|
</form>
|
|
</main>
|
|
<script src="auth.js"></script>
|
|
<script src="register.js"></script>
|
|
</body>
|
|
</html> |