From fc873245c96f810b6abb39c01244bf7acef49bd4 Mon Sep 17 00:00:00 2001 From: Paul Cancel <paul.cancel.etu@univ-lille.fr> Date: Tue, 26 Mar 2024 15:59:11 +0100 Subject: [PATCH] Update 2 files - /public/Pages/Projets/Pizzaland.html - /public/Pages/Projets.html --- public/Pages/Projets.html | 2 +- public/Pages/Projets/Pizzaland.html | 69 +++++++++++++++++++++++++++++ 2 files changed, 70 insertions(+), 1 deletion(-) create mode 100644 public/Pages/Projets/Pizzaland.html diff --git a/public/Pages/Projets.html b/public/Pages/Projets.html index 20cb63f..2b553f4 100644 --- a/public/Pages/Projets.html +++ b/public/Pages/Projets.html @@ -58,7 +58,7 @@ </a> </li> <li> - <a href="./Projets/Portfolio.html"> + <a href="./Projets/Pizzaland.html"> <img src="../Images/Projets/Pizzaland.png" alt="Pizzaland"> <div class="title"> <p>Rest API "Pizzaland"</p> diff --git a/public/Pages/Projets/Pizzaland.html b/public/Pages/Projets/Pizzaland.html new file mode 100644 index 0000000..9ff7cba --- /dev/null +++ b/public/Pages/Projets/Pizzaland.html @@ -0,0 +1,69 @@ +<!DOCTYPE html> +<html lang="fr"> +<head> +<meta charset="UTF-8" /> +<title>Page</title> +<link rel="stylesheet" href="../../Styles/styles.css" /> +</head> +<body> + <div class="topnav"> + <a class="active" href="../../index.html">Accueil</a> + <a href="../Projets.html">Mes projets</a> + </div> + <header> + <a href="https://gitlab.univ-lille.fr/sae-pizzaland/pizzaland-cancel-mirey" target="_blank"> + <h2> + Rest API : "Pizzaland" + </h2> + </a> + </header> + <section id="projets"> + <img src="../../Images/Projets/Pizzaland.png" alt="Pizzaland"> + <header> + <h1>Présentation</h1> + </header> + <article> + <h5> Nous avons créé en duo une API permettant la gestion d'une base de données d'une pizzeria, + en incluant la gestion d'ingrédients, des users, de pizzas et de commandes. + Cette API est basée sur la méthode REST et tourne à l'intérieur d'un serveur tomcat, + elle gère une base de données en Postgresql et elle utilise également uniquement des + objets json. Un système d'identification est également inclus permettant de sécuriser + les opérations visant à changer la base de donnée. + </h5> + </article> + <header> + <h1>Compétences inclues</h1> + </header> + <article> + <ul> + <li> + <h4>Java programmation objet</h4> + </li> + <li> + <h4>REST</h4> + </li> + <li> + <h4>Tomcat</h4> + </li> + <li> + <h4>JEE</h4> + </li> + <li> + <h4>Git</h4> + </li> + <li> + <h4>Bruno</h4> + </li> + <li> + <h4>PostgreSQL</h4> + </li> + </ul> + + </article> + </section> + + <div class="bottomfoot"> + <a href="./Contact.html">Me contacter</a> + <a href="../pdf/cv.pdf" target="_blank">Mon CV</a> + </div> +</body> \ No newline at end of file -- GitLab