1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
JEE_Project/build/web/WEB-INF/jsp/detail.jsp
2022-06-27 21:14:35 +02:00

55 lines
2.2 KiB
Text

<%@page contentType="text/html" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Detail</title>
</head>
<body>
<%@include file="header.jsp" %>
<form name="detail" method="POST">
<p>
<label for="numero">Numero</label>
<input type="text" name="numero" value="${client.customerId}" size="30" id="numero" />
</p>
<p>
<label for="nom">Nom</label>
<input type="text" name="nom" value="${client.name}" size="30" id="nom" />
</p>
<p>
<label for="adresse">Adresse</label>
<input type="text" name="adresse" value="${client.addressline1}" size="30" id="adresse" />
</p>
<p>
<label for="telephone">Téléphone</label>
<input type="text" name="telephone" value="${client.phone}" size="30" id="tel" />
</p>
<p>
<label for="email">E-mail</label>
<input type="text" name="email" value="${client.email}" size="30" id="email"/>
</p>
<p>
<label for="Remise">Remise</label>
<select name="code_remise" id="dc">
<c:forEach items="${code}" var="dc">
<option <c:if test="${dc==client.discountCode}"> selected </c:if>>${dc}</option>
</c:forEach>
</select>
</p>
<p>
<label for="cp">Code Postal</label>
<select name="CP" id="cp">
<c:forEach items="${cpostaux}" var="cp">
<option <c:if test="${cp==client.zip}"> selected </c:if>>${cp}</option>
</c:forEach>
</select>
</p>
<input type="submit" value="Modifier" formaction="update.htm" />
<input type="submit" value="Supprimer" formaction="delete.htm" />
<input type="submit" value="Afficher les achats" formaction="achats.htm" />
</form>
</body>
</html>