Première version de la page d'acceuil mais problème avec le bouton connexion
This commit is contained in:
BIN
background.jpg
Normal file
BIN
background.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 14 KiB |
85
index.html
Normal file
85
index.html
Normal file
@@ -0,0 +1,85 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="initial-scale=1,witdh=device-width">
|
||||
<title>Pegasus</title>
|
||||
<link rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<header>
|
||||
<h2 class="logo">Logo</h2>
|
||||
<nav class="navigation">
|
||||
<a href ="#">Acceuil</a>
|
||||
<a href ="#">Réservation</a>
|
||||
<a href ="#">À propos</a>
|
||||
<a href ="#">Contact</a>
|
||||
<a href ="#">FAQ</a>
|
||||
<button class ="btnLogin-popup">Connexion</button>
|
||||
</nav>
|
||||
</header>
|
||||
<div class="wrapper">
|
||||
<span class="icon-close">
|
||||
<ion-icon name="close-outline"></ion-icon>
|
||||
</span class>
|
||||
<div class="form-box login">
|
||||
<h2>Connexion</h2>
|
||||
<form action="#">
|
||||
<div class="input-box">
|
||||
<span class="icon"><ion-icon name="mail"></ion-icon></span>
|
||||
<input type="email" required>
|
||||
<label>Email</label>
|
||||
</div>
|
||||
<div class="input-box">
|
||||
<span class="icon"><ion-icon name="lock-closed"></ion-icon></span>
|
||||
<input type="password" required>
|
||||
<label>Mot de passe</label>
|
||||
</div>
|
||||
<div class="remember-forgot">
|
||||
<label><input type="checkbox"> Se souvenir de moi</label>
|
||||
<a href="#">Mot de passe oublié ?</a>
|
||||
</div>
|
||||
<button type="submit" class="btn"> Connexion</button>
|
||||
<div class="login-register">
|
||||
<p>Vous n'avez pas de compte ?<a href ="#" class="register-link"> S'inscire</a></p>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<div class="form-box register">
|
||||
<h2>S'inscrire</h2>
|
||||
<form action="#">
|
||||
<div class="input-box">
|
||||
<span class="icon">
|
||||
<ion-icon name="person"></ion-icon>
|
||||
</span>
|
||||
<input type="text" required>
|
||||
<label>Nom d'utilisateur</label>
|
||||
</div>
|
||||
<div class="input-box">
|
||||
<span class="icon"><ion-icon name="mail"></ion-icon></span>
|
||||
<input type="email" required>
|
||||
<label>Email</label>
|
||||
</div>
|
||||
<div class="input-box">
|
||||
<span class="icon"><ion-icon name="lock-closed"></ion-icon></span>
|
||||
<input type="password" required>
|
||||
<label>Mot de passe</label>
|
||||
</div>
|
||||
<div class="remember-forgot">
|
||||
<label><input type="checkbox"> J'ai compris les conditions d'utilisations</label>
|
||||
</div>
|
||||
<button type="submit" class="btn"> S'inscrire</button>
|
||||
<div class="login-register">
|
||||
<p>Vous avez déjà un compte ?<a href ="#" class="login-link"> Connexion</a></p>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="script.js"></script>
|
||||
<script type="module" src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.esm.js"></script>
|
||||
<script nomodule src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.js"></script>
|
||||
</body>
|
22
script.js
Normal file
22
script.js
Normal file
@@ -0,0 +1,22 @@
|
||||
const wrapper = document.querySelector('.wrapper');
|
||||
const loginLink = document.querySelector('.login-link');
|
||||
const registerLink = document.querySelector('.register-link');
|
||||
const btnPopup = document.querySelector('.btnLogin-popup');
|
||||
const iconClose = document.querySelector('.icon-close');
|
||||
|
||||
|
||||
registerLink.addEventListener('click', ()=> {
|
||||
wrapper.classList.add('active');
|
||||
});
|
||||
|
||||
loginLink.addEventListener('click', ()=> {
|
||||
wrapper.classList.remove('active');
|
||||
});
|
||||
|
||||
btnPopup.addEventListener('click', ()=> {
|
||||
wrapper.classList.add('active-popup');
|
||||
});
|
||||
|
||||
iconClose.addEventListener('click', ()=> {
|
||||
wrapper.classList.remove('active-popup');
|
||||
});
|
265
style.css
Normal file
265
style.css
Normal file
@@ -0,0 +1,265 @@
|
||||
{
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
font-family: 'Poppins', sans-serif;
|
||||
|
||||
}
|
||||
|
||||
body {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
min-height: 100vh;
|
||||
background: url('background.jpg') no-repeat;
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
}
|
||||
|
||||
header {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
padding: 20px 100px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
z-index: 99;
|
||||
}
|
||||
|
||||
.logo {
|
||||
font-size: 2em;
|
||||
color: #fff;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.navigation a {
|
||||
position: relative;
|
||||
font-size: 1.1em;
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
font-weight: 500;
|
||||
margin-left: 40px;
|
||||
}
|
||||
.navigation a::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
bottom: -6px;
|
||||
width: 100%;
|
||||
height: 3px;
|
||||
background: #fff;
|
||||
border-radius: 5px;
|
||||
transform-origin: right;
|
||||
transform: scaleX(0);
|
||||
transition: transform .5s;
|
||||
|
||||
}
|
||||
.navigation a:hover::after {
|
||||
transform-origin: left;
|
||||
transform: scaleX(1);
|
||||
|
||||
}
|
||||
|
||||
.navigation .btnLogin-popup {
|
||||
width: 130px;
|
||||
height: 50px;
|
||||
background: transparent;
|
||||
border: 2px solid #fff;
|
||||
outline: none;
|
||||
border-radius: 6px;
|
||||
cursor: pointer;
|
||||
font-size: 1.1em;
|
||||
color: #fff;
|
||||
font-weight: 500;
|
||||
margin-left: 40px;
|
||||
transition: .5s;
|
||||
}
|
||||
|
||||
.navigation .btnLogin-popup:hover {
|
||||
background: #fff;
|
||||
color: #162938;
|
||||
|
||||
}
|
||||
|
||||
.wrapper {
|
||||
position: relative;
|
||||
width: 400px;
|
||||
height: 440px;
|
||||
background: transparent;
|
||||
border: 2px solid rgba(255, 255, 255, .5);
|
||||
border-radius: 20px;
|
||||
backdrop-filter: blur(20px);
|
||||
box-shadow: 0 0 30px rgba(0, 0, 0, .5);
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
overflow: hidden;
|
||||
transform: scale(0);
|
||||
transition: transform .5s ease, height .2s ease;
|
||||
}
|
||||
|
||||
.wrapper.active-popup {
|
||||
transform: scale(1);
|
||||
|
||||
}
|
||||
|
||||
.wrapper.active {
|
||||
height: 520px;
|
||||
|
||||
}
|
||||
|
||||
.wrapper .form-box {
|
||||
width: 100%;
|
||||
padding: 40px;
|
||||
}
|
||||
|
||||
.wrapper .form-box.login {
|
||||
transition: transform .18s ease;
|
||||
transform: translateX(0);
|
||||
}
|
||||
|
||||
.wrapper.active .form-box.login {
|
||||
transition: none;
|
||||
transform: translateX(-400px);
|
||||
}
|
||||
|
||||
.wrapper .form-box.register {
|
||||
position: absolute;
|
||||
transition: none;
|
||||
transform: translateX(400px);
|
||||
}
|
||||
|
||||
.wrapper.active .form-box.register {
|
||||
transition: transform .18s ease;
|
||||
transform: translateX(0);
|
||||
}
|
||||
|
||||
.wrapper .icon-close {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
width: 45px;
|
||||
height: 45px;
|
||||
background: #162938;
|
||||
font-size: 2em;
|
||||
color: #fff;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
border-bottom-left-radius: 20px;
|
||||
cursor: pointer;
|
||||
z-index: 1;
|
||||
|
||||
}
|
||||
|
||||
.form-box h2 {
|
||||
font-size: 2em;
|
||||
color: white;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.input-box {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 50px;
|
||||
border-bottom: 2px solid whitesmoke;
|
||||
margin: 30px 0;
|
||||
}
|
||||
|
||||
.input-box label {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 5px;
|
||||
transform: translateY(-50%);
|
||||
font-size: 1em;
|
||||
color: whitesmoke;
|
||||
font-weight: 500;
|
||||
pointer-events: none;
|
||||
transition: .5s;
|
||||
}
|
||||
|
||||
.input-box input:focus~label,
|
||||
.input-box input:valid~label {
|
||||
top: -5px;
|
||||
}
|
||||
|
||||
|
||||
.input-box input {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: transparent;
|
||||
border: none;
|
||||
outline: none;
|
||||
font-size: 1em;
|
||||
color:whitesmoke;
|
||||
font-weight: 600;
|
||||
padding: 0 35px 0 5px;
|
||||
|
||||
}
|
||||
|
||||
.input-box .icon {
|
||||
position: absolute;
|
||||
right: 8px;
|
||||
font-size: 1.2em;
|
||||
line-height: 57px;
|
||||
}
|
||||
|
||||
.remember-forgot {
|
||||
font-size: .9em;
|
||||
color: whitesmoke;
|
||||
font-weight: 500;
|
||||
margin: -15px 0 15px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
|
||||
}
|
||||
|
||||
.remember-forgot label input {
|
||||
accent-color: purple;
|
||||
margin-right: 3px;
|
||||
}
|
||||
|
||||
.remember-forgot a {
|
||||
color: #162938;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.remember-forgot a:hover {
|
||||
text-decoration:underline
|
||||
}
|
||||
|
||||
.btn {
|
||||
width: 100%;
|
||||
height: 45px;
|
||||
background: #162938;
|
||||
border: none;
|
||||
outline: none;
|
||||
border-radius: 6px;
|
||||
cursor: pointer;
|
||||
font-size: 1em;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.login-register {
|
||||
font-size: .9em;
|
||||
color: #FBFCFC;
|
||||
text-align: center;
|
||||
font-weight: 500;
|
||||
margin: 25px 0 10px;
|
||||
}
|
||||
|
||||
.login-register p a {
|
||||
color: #162938;
|
||||
text-decoration: none;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.login-register p a:hover {
|
||||
text-decoration: underline;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user