commit
e9afe5fbb0
After Width: | Height: | Size: 34 KiB |
@ -0,0 +1,102 @@
|
||||
.three-body {
|
||||
--uib-size: 500px;
|
||||
--uib-speed: 0.8s;
|
||||
--uib-color: #00DBFF;
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
height: var(--uib-size);
|
||||
width: var(--uib-size);
|
||||
animation: spin78236 calc(var(--uib-speed) * 2.5) infinite linear;
|
||||
}
|
||||
|
||||
.three-body__dot {
|
||||
position: absolute;
|
||||
height: 100%;
|
||||
width: 30%;
|
||||
}
|
||||
|
||||
.three-body__dot:after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
height: 0;
|
||||
width: 100%;
|
||||
padding-bottom: 100%;
|
||||
background-color: var(--uib-color);
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.three-body__dot:nth-child(1) {
|
||||
bottom: 5%;
|
||||
left: 0;
|
||||
transform: rotate(60deg);
|
||||
transform-origin: 50% 85%;
|
||||
}
|
||||
|
||||
.three-body__dot:nth-child(1)::after {
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
animation: wobble1 var(--uib-speed) infinite ease-in-out;
|
||||
animation-delay: calc(var(--uib-speed) * -0.3);
|
||||
}
|
||||
|
||||
.three-body__dot:nth-child(2) {
|
||||
bottom: 5%;
|
||||
right: 0;
|
||||
transform: rotate(-60deg);
|
||||
transform-origin: 50% 85%;
|
||||
}
|
||||
|
||||
.three-body__dot:nth-child(2)::after {
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
animation: wobble1 var(--uib-speed) infinite
|
||||
calc(var(--uib-speed) * -0.15) ease-in-out;
|
||||
}
|
||||
|
||||
.three-body__dot:nth-child(3) {
|
||||
bottom: -5%;
|
||||
left: 0;
|
||||
transform: translateX(116.666%);
|
||||
}
|
||||
|
||||
.three-body__dot:nth-child(3)::after {
|
||||
top: 0;
|
||||
left: 0;
|
||||
animation: wobble2 var(--uib-speed) infinite ease-in-out;
|
||||
}
|
||||
|
||||
@keyframes spin78236 {
|
||||
0% {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes wobble1 {
|
||||
0%,
|
||||
100% {
|
||||
transform: translateY(0%) scale(1);
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
50% {
|
||||
transform: translateY(-66%) scale(0.65);
|
||||
opacity: 0.8;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes wobble2 {
|
||||
0%,
|
||||
100% {
|
||||
transform: translateY(0%) scale(1);
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
50% {
|
||||
transform: translateY(66%) scale(0.65);
|
||||
opacity: 0.8;
|
||||
}
|
||||
}
|
@ -0,0 +1,145 @@
|
||||
a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.navbar-container {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 0 2rem;
|
||||
width: 100%;
|
||||
height: 70px;
|
||||
background: #fff;
|
||||
color: #212121;
|
||||
position: sticky;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
.navbar-container .logo-container a {
|
||||
font-size: 1.5rem;
|
||||
font-weight: 500;
|
||||
font-family: 'Kanit', sans-serif;
|
||||
text-transform: uppercase;
|
||||
cursor: pointer;
|
||||
color: #212121;
|
||||
max-height: 70px;
|
||||
}
|
||||
|
||||
.navbar-container .nav-items {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 3rem;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.navbar-container .nav-items .nav-link a {
|
||||
color: #212121;
|
||||
padding: 10px;
|
||||
text-transform: uppercase;
|
||||
transition: 0.2s;
|
||||
}
|
||||
|
||||
.navbar-container .nav-items .nav-link:after {
|
||||
content: '';
|
||||
display: block;
|
||||
border-top: 3px solid #00DBFF;
|
||||
transform: scaleX(0);
|
||||
transition: transform 250ms ease-in-out;
|
||||
}
|
||||
|
||||
.navbar-container .nav-items .nav-link:hover:after {
|
||||
transform: scaleX(0.8);
|
||||
}
|
||||
|
||||
.navbar-container .nav-items .login-register {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.navbar-container .nav-items .login-register .button {
|
||||
color: #00DBFF;
|
||||
padding: 5px 20px;
|
||||
text-transform: uppercase;
|
||||
border-radius: 15px;
|
||||
border: #fff 2px solid;
|
||||
}
|
||||
|
||||
.navbar-container .nav-items .login-register .button2{
|
||||
background: #00DBFF;
|
||||
color: #fff;
|
||||
border-radius: 15px;
|
||||
}
|
||||
|
||||
.navbar-container .nav-items .login-register .button:hover {
|
||||
border: #00DBFF 2px solid;
|
||||
}
|
||||
|
||||
.navbar-container .nav-items .login-register .button2:hover {
|
||||
border: #00A4FF 2px solid;
|
||||
}
|
||||
|
||||
@media(max-width: 1030px) {
|
||||
.navbar-container {
|
||||
padding: 0 1rem;
|
||||
}
|
||||
|
||||
.navbar-container .nav-items {
|
||||
gap: 0.1rem;
|
||||
}
|
||||
|
||||
.navbar-container .nav-items .nav-link a,
|
||||
.navbar-container .nav-items .login-register .button {
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
}
|
||||
|
||||
@media(max-width: 915px) {
|
||||
.navbar-container .nav-items {
|
||||
flex-direction: column;
|
||||
position: fixed;
|
||||
top: 70px;
|
||||
right: -100%;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
padding: 1rem 0;
|
||||
z-index: 99;
|
||||
background: #fff;
|
||||
transition: 0.2s ease-in;
|
||||
}
|
||||
|
||||
.bars {
|
||||
width: 22px;
|
||||
height: auto;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.bars .bar {
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
background: #212121;
|
||||
margin: 5px;
|
||||
}
|
||||
|
||||
.navbar-container .nav-items {
|
||||
gap: 3rem;
|
||||
}
|
||||
|
||||
.navbar-container .nav-items .login-register {
|
||||
width: 50%;
|
||||
text-align: center;
|
||||
flex-direction: column;
|
||||
gap: 2rem;
|
||||
}
|
||||
|
||||
.navbar-container .nav-items .login-register .button {
|
||||
padding: 1rem 0;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.navbar-container .nav-items.active {
|
||||
right: 0;
|
||||
}
|
@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
namespace App\gateway;
|
||||
use PDO;
|
||||
class ProfilGateway
|
||||
{
|
||||
private \App\gateway\Connection $con;
|
||||
/**
|
||||
* @param Connection $con
|
||||
*/
|
||||
public function __construct(\App\gateway\Connection $con)
|
||||
{
|
||||
$this->con = $con;
|
||||
}
|
||||
|
||||
public function insert(int $alumni,string $nom, string $prenom, string $email)
|
||||
{
|
||||
$query = 'INSERT INTO Profil (alumni,nom, prenom,email) VALUES (:alumni,:nom, :prenom,:email)';
|
||||
return $this->con->executeQuery($query, array(
|
||||
':alumni' => array($alumni, PDO::PARAM_INT),
|
||||
':nom' => array($nom, PDO::PARAM_STR),
|
||||
':prenom' => array($prenom, PDO::PARAM_STR),
|
||||
':email' => array($email, PDO::PARAM_STR)
|
||||
));
|
||||
}
|
||||
}
|
@ -1,5 +1,5 @@
|
||||
<?php
|
||||
namespace App\modele;
|
||||
namespace App\metier;
|
||||
|
||||
class Article
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
<?php
|
||||
namespace App\modele;
|
||||
namespace App\metier;
|
||||
|
||||
class Evenement
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
<?php
|
||||
namespace App\modele;
|
||||
namespace App\metier;
|
||||
|
||||
class Experience
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
<?php
|
||||
namespace App\modele;
|
||||
namespace App\metier;
|
||||
|
||||
class Formation
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
<?php
|
||||
namespace App\modele;
|
||||
namespace App\metier;
|
||||
|
||||
enum TypeContrat
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
<?php
|
||||
namespace App\modele;
|
||||
namespace App\metier;
|
||||
enum Role
|
||||
{
|
||||
case Admin;
|
@ -0,0 +1,24 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Success</title>
|
||||
<link rel="stylesheet" type="text/css" href="../public/css/inscription_success.css">
|
||||
</head>
|
||||
<body>
|
||||
<h1>Inscription effectuée avec succès, vous pouvez désormais vous connecter</h1>
|
||||
<p>Vous allez être redirigé vers la page de connexion dans 5 secondes</p>
|
||||
<div class="three-body">
|
||||
<div class="three-body__dot"></div>
|
||||
<div class="three-body__dot"></div>
|
||||
<div class="three-body__dot"></div>
|
||||
</div>
|
||||
<script>
|
||||
setTimeout(function () {
|
||||
window.location.href = "../public/index.php?action=connection";
|
||||
}, 5000);
|
||||
</script>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,37 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<link rel="stylesheet" type="text/css" href="../public/css/menu.css">
|
||||
<title></title>
|
||||
</head>
|
||||
<nav class="navbar-container">
|
||||
<div class="logo-container">
|
||||
<a href="index.php">
|
||||
<img src="assets/logo.png" alt="Logo" height="70px">
|
||||
</a>
|
||||
</div>
|
||||
<div class="bars">
|
||||
<div class="bar"></div>
|
||||
<div class="bar"></div>
|
||||
<div class="bar"></div>
|
||||
</div>
|
||||
<ul class="nav-items">
|
||||
<li class="nav-link"><a href="#">A propos</a></li>
|
||||
<li class="nav-link"><a href="#">Evenements</a></li>
|
||||
<li class="nav-link"><a href="#">Offres</a></li>
|
||||
<li class="nav-link"><a href="#">Nous contacter</a></li>
|
||||
</ul>
|
||||
<ul class="nav-items">
|
||||
<!-- Afficher boutons de connexion et d'inscription -->
|
||||
{% if nom and prenom %}
|
||||
<!-- Afficher bouton de déconnexion -->
|
||||
<a href="index.php?action=deconnexion" class="button">Déconnexion</a>
|
||||
{% else %}
|
||||
<div class="login-register">
|
||||
<a href="index.php?action=connection" class="button">Connexion</a>
|
||||
<a href="index.php?action=inscription" class="button button2">Inscription</a>
|
||||
</div>
|
||||
{% endif %}
|
||||
</ul>
|
||||
</nav>
|
||||
</html>
|
Loading…
Reference in new issue