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/web/WEB-INF/jsp/confirm.jsp

24 lines
635 B
Text
Raw Normal View History

2022-06-27 21:14:35 +02:00
<%--
Document : confirm
Created on : 5 mars 2018, 22:16:48
Author : faycal
--%>
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Confirmation</title>
</head>
<body>
<%@include file="header.jsp" %>
<h1>${confirm} </h1>
<form action="list.htm" method="POST">
2022-06-29 22:48:35 +02:00
<input hidden type="text" name="type" value="${type}" />
<input type="submit" value="Afficher tous les enregistrements" />
2022-06-27 21:14:35 +02:00
</form>
</body>
</html>