-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
76 lines (72 loc) · 2.51 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!-- Page d'accuiell -->
<?php
session_start();
unset($_SESSION['currentUser']);
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ICE BREAKING | Acceuil</title>
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="css/main.css?v=<?php echo time(); ?>">
<link rel="stylesheet" href="css/index.css?v=<?php echo time(); ?>">
<script src="//code.tidio.co/lf2zoxxvg8n9kzfqykb21xczwpmijivb.js" async></script>
<script src="https://code.jquery.com/jquery-3.6.0.js" integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=" crossorigin="anonymous"></script>
</head>
<body>
<header class="header">
<nav>
<div class="logo">ICE BREAKING</div>
<div class="links">
<ul class="link-list">
<li class="link-items"><a href="./index.php" id="active">Acceuil</a></li>
<li class="link-items"><a href="./forum/index.php">Forum</a></li>
<li class="link-items"><a href="./index.php">A propos</a></li>
</ul>
</div>
<div class="btns">
<button id="loginBtn" onclick="
window.location.href = './login.php'
">S'identifier</button>
<button id="registerBtn" onclick="
window.location.href = './register.php'
">S'inscrire</button>
</div>
</nav>
</header>
<section class="main">
<div class="first-section">
<div class="text">
<h1 class="title1">
Bonjour, que pouvons-nous vous aider à trouver ?
</h1>
<h5 class="title2">
ICE breaking est une platforme de forum
</h5>
<form action="" class="search-form">
<input type="search" name="" id="search-value" placeholder="Rechercher un sujet...">
<input type="submit" value="Rechercher" id="submit-search">
</form>
</div>
<div class="img-container">
<img src="./images/social.png?v=<?php echo time(); ?>" alt="">
</div>
</div>
</section>
<footer class="footer">
<p>Developpé par: <a href="">Wassim EL BAKKOURI</a></p>
</footer>
<script>
$(window).on("scroll", function() {
if ($(window).scrollTop() > 50)
$(".header").addClass("active-header");
else
$(".header").removeClass("active-header");
});
$('.search-form').submit(e => window.location.href = './forum/index.php')
</script>
</body>
</html>