base
This commit is contained in:
parent
bbc91d51c7
commit
a3fcf1beeb
0
css/footer.css
Normal file
0
css/footer.css
Normal file
0
css/header.css
Normal file
0
css/header.css
Normal file
18
index.php
Normal file
18
index.php
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
<?php include "php/templates/header.php" ?>
|
||||||
|
<body>
|
||||||
|
<nav>
|
||||||
|
<div>
|
||||||
|
<h1 id="titre">AIide, site d'aide aux étudiants</h1>
|
||||||
|
<ul>
|
||||||
|
<li><a href="">Matières</a></li>
|
||||||
|
<li><a href="">A propos</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div id="auth">
|
||||||
|
<a href="">Se connecter</a>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
<div>
|
||||||
|
<p>Coucou c'est le service d'aide aux BUT Info</p>
|
||||||
|
</div>
|
||||||
|
<?php include "php/templates/footer.php" ?>
|
9
php/auth/login.php
Normal file
9
php/auth/login.php
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
if(isset($_POST['auth'])
|
||||||
|
{
|
||||||
|
$mail = filter_input(INPUT_POST, 'mail', FILTER_VALIDATE_EMAIL | FILTER_SANITIZE_EMAIL);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
0
php/auth/logout.php
Normal file
0
php/auth/logout.php
Normal file
0
php/auth/register.php
Normal file
0
php/auth/register.php
Normal file
7
php/templates/footer.php
Normal file
7
php/templates/footer.php
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
<footer>
|
||||||
|
<div>
|
||||||
|
<p>Site créé et maintenu par Dimitri DUPARD<p>
|
||||||
|
<p>Pour tout problème sur le site, contacter <a href="mailto:dimitri.dupard@yahoo.fr">le webmaster</a></p>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
7
php/templates/header.php
Normal file
7
php/templates/header.php
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang=fr>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0">
|
||||||
|
<title>AIidE</title>
|
||||||
|
</head>
|
Loading…
Reference in New Issue
Block a user