mirror of
https://github.com/arthur-pbty/streaming-site.git
synced 2026-06-25 14:20:56 +02:00
Add files via upload
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user