This commit is contained in:
clement.bouillot
2021-10-18 11:00:32 +02:00
commit 1062bf48b2
30 changed files with 3229 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<%-- any content can be specified here e.g.: --%>
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<%--
Document : newjsp
Created on : 18 sept. 2021, 15:34:04
Author : Dominique_2
--%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Gestion des clients</title>
</head>
<body>
<h1>Gestion des clients</h1>

View File

@@ -0,0 +1,7 @@
<%-- any content can be specified here e.g.: --%>
<%@ page pageEncoding="UTF-8" %>
<nav>
<a href ="Accueil">Accueil</a>
<a href="NouveauClient">Création d'un nouveau client</a>
<a href="ListeClients">Liste des clients</a>
</nav>