36 lines
1.2 KiB
HTML
36 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
|
|
<title>LOOP</title>
|
|
<base href="./">
|
|
<script src="https://kit.fontawesome.com/96dcb489df.js" crossorigin="anonymous"></script>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
|
|
<div class="header-container">
|
|
<a href="main.html"><img src="logo.png" class="logo"></a>
|
|
<h1>Let your favorite songs play on LOOP.</h1>
|
|
</div>
|
|
|
|
|
|
<div class="login-container">
|
|
<h3 class="login-title">Login Account</h3>
|
|
<input type="text" id="username" placeholder="Username" required>
|
|
<input type="password" id="password" placeholder="Password" required>
|
|
<button id="loginBtn" class="button">Log In</button>
|
|
<p id="error-message" class="error-message"></p>
|
|
</div>
|
|
|
|
|
|
<h2>Don't have an account ?<a href="" class="orange"> Sign up now.</a> </span></h2>
|
|
|
|
<script src="main.js"></script>
|
|
|
|
</body>
|
|
</html>
|
|
|