-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAboutus.php
49 lines (39 loc) · 1.04 KB
/
Aboutus.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
<?php
include('include/profile.inc.php');
?>
<!DOCTYPE html>
<html>
<head>
<title>ENSAK</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="style.css">
<style type="text/css">
.erreur
{
position: absolute;
top: 100px;
left: 550px;
color: red;
font-size: 18px;
}
.conteneur{
height: 420px;
}
</style>
</head>
<body>
<a href="<?php echo "maison.php?id_profile=$id_user&id_user=$id_user"; ?>">
<img src="img/logo.png" alt="ENSAK" class="logo">
</a>
<div class="conteneur">
<h4>About us</h4> <br>
<h5>Clicker sur les noms pour acceder à notre github</h5>
<form method="POST" action="">
<a href="https://github.com/IlhamOukassou"><h1>Ilham oukassou</h1></a> <br>
<a href="https://github.com/SAAD123333"><h1>Saad Mazouzi</h1> </a><br>
<a href="https://github.com/YassineOujaa77"><h1>Yassine Oujaa</h1></a> <br>
</form>
<a href="<?php echo "maison.php?id_profile=$id_user&id_user=$id_user"; ?>"><input type="submit" name="Signin" value="Go back " class="signin"></a>
</div>
</body>
</html>