Code jsp : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45 <%@ page language="java" contentType="text/html ; charset=UTF-8 " pageEncoding="UTF-8" %> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Upright</title> <link href="https://fonts.googleapis.com/css2?family=Kumbh+Sans&display=swap" rel="stylesheet"> <!-- <a href="https://fonts.google.com/specimen/Kumbh+Sans" target="_blank">https://fonts.google.com/specimen/Kumbh+Sans</a> --> <link rel="stylesheet" href="../fontawesome/css/all.min.css"> <!-- https://fontawesome.com/--> <link rel="stylesheet" href="../css/magnific-popup.css"> <!-- <a href="https://dimsemenov.com/plugins/magnific-popup/" target="_blank">https://dimsemenov.com/plugins/magnific-popup/</a> --> <link rel="stylesheet" href="../css/bootstrap.min.css"> <!-- <a href="https://getbootstrap.com/" target="_blank">https://getbootstrap.com/</a> --> <link rel="stylesheet" href="../slick/slick.min.css"> <!-- <a href="https://kenwheeler.github.io/slick/" target="_blank">https://kenwheeler.github.io/slick/</a> --> <link rel="stylesheet" href="../slick/slick-theme.css"> <link rel="stylesheet" href="../css/templatemo-upright.css"> </head> <body> <div class="tm-section-wrap" > <div class="tm-parallax" data-parallax="scroll" data-image-src="img/img-04.jpg"></div> <div id="contact" class="tm-section"> <h2 class="tm-text-primary">Ajout de localité</h2> <hr class="mb-5"> <div class="row"> <div class="col-xl-6 tm-contact-col-l mb-4"> <c:if test="8>4"> <c:out value="correct"/></c:if> <form id="contact-form" action="FormCity.jsp" method="POST" class="tm-contact-form"> <div class="form-group"> <input type="text" name="name" class="form-control rounded-0" placeholder="Nom" required /> </div> <div class="form-group"> <input type="text" name="region" class="form-control rounded-0" placeholder="Region" required /> </div> <div class="form-group tm-text-right"> <button type="submit" name="ad" class="btn btn-primary">Ajouter</button> </div> </form> </div> </div> </div>
Partager