-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.jsp
77 lines (60 loc) · 3.12 KB
/
index.jsp
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<%--
Document : index
Created on : 18 mai 2016, 11:18:10
Author : formation
--%>
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
<%@taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
<%@ include file="WEB-INF/jsp/fragments/Header.jsp" %>
<%@ include file="WEB-INF/jsp/fragments/NavBar.jsp" %>
<div class="section no-pad-bot" id="index-banner">
<div class="container">
<% if (request.getAttribute("messageErreur") != null) {
out.print("<div class='card-panel teal orange'>" + request.getAttribute("messageErreur") + "</div >");
}
%>
<br><br>
<h1 class="header center orange-text">Le site de vente d'occasion de M2I</h1>
<div class="row center">
<h5 class="header col s12 light">Un site communautaire fait par les stagiares de M2I formation Paris</h5>
</div>
<div class="row center">
<a href="AnnonceCTRL" id="download-button" class="btn-large waves-effect waves-light orange">Voir les annonces</a>
</div>
<br><br>
</div>
</div>
<div class="container">
<div class="section">
<!-- Icon Section -->
<div class="row">
<div class="col s12 m4">
<div class="icon-block">
<h2 class="center light-blue-text"><i class="material-icons">flash_on</i></h2>
<h5 class="center">Développement</h5>
<p class="light">We did most of the heavy lifting for you to provide a default stylings that incorporate our custom components. Additionally, we refined animations and transitions to provide a smoother experience for developers.</p>
</div>
</div>
<div class="col s12 m4">
<div class="icon-block">
<h2 class="center light-blue-text"><i class="material-icons">group</i></h2>
<h5 class="center">Une expérience utilisateur</h5>
<p class="light">By utilizing elements and principles of Material Design, we were able to create a framework that incorporates components and animations that provide more feedback to users. Additionally, a single underlying responsive system across all platforms allow for a more unified user experience.</p>
</div>
</div>
<div class="col s12 m4">
<div class="icon-block">
<h2 class="center light-blue-text"><i class="material-icons">settings</i></h2>
<h5 class="center">Facilité d'utilisation</h5>
<p class="light">We have provided detailed documentation as well as specific code examples to help new users get started. We are also always open to feedback and can answer any questions a user may have about Materialize.</p>
</div>
</div>
</div>
</div>
<br><br>
<div class="section">
</div>
</div>
<%@ include file="WEB-INF/jsp/fragments/Footer.jsp" %>