|
@@ -1,6 +1,7 @@
|
|
|
<%@ page language="java" contentType="text/html; charset=utf-8"
|
|
|
pageEncoding="utf-8"%>
|
|
|
<%@ taglib prefix="s" uri="/struts-tags"%>
|
|
|
+<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
|
|
|
|
|
|
<!DOCTYPE html>
|
|
|
<html>
|
|
@@ -8,33 +9,34 @@
|
|
|
<head>
|
|
|
<meta charset="UTF-8">
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
- <link type="text/css" rel="stylesheet" href="../css/material-icons.css" />
|
|
|
- <link type="text/css" rel="stylesheet" href="../css/materialize.min.css" media="screen,projection" />
|
|
|
- <link type="text/css" rel="stylesheet" href="../css/style.min.css" media="screen,projection" />
|
|
|
+ <link type="text/css" rel="stylesheet" href="<c:url value="/css/material-icons.css"/>" />
|
|
|
+ <link type="text/css" rel="stylesheet" href="<c:url value="/css/materialize.min.css"/>" media="screen,projection" />
|
|
|
+ <link type="text/css" rel="stylesheet" href="<c:url value="/css/style.min.css"/>" media="screen,projection" />
|
|
|
<link rel="icon" href="../img/favicon.ico" />
|
|
|
<title>Accueil - Microfolie Lens</title>
|
|
|
</head>
|
|
|
|
|
|
<body class="grey lighten-3">
|
|
|
<s:url var="inscriptionurl" action="gotoinscription"/>
|
|
|
-
|
|
|
+ <s:url var="abonnesurl" action="gotoabonnes"/>
|
|
|
+ <s:url var="settingsurl" action="gotosettings"/>
|
|
|
<!-- Header -->
|
|
|
<header class="navbar-fixed">
|
|
|
<nav class="red">
|
|
|
<div class="nav-wrapper">
|
|
|
- <a href="../" class="brand-logo center mtop-half hide-on-med-and-down"><img src="../img/logo.png"
|
|
|
+ <a href="<c:url value="/"/>" class="brand-logo center mtop-half hide-on-med-and-down"><img src="<c:url value="/img/logo.png"/>"
|
|
|
title="Logo Microfolie" class="responsive-img" style="max-width: 128px;" /></a>
|
|
|
- <a href="../" class="brand-logo center hide-on-large-only">Microfolie Lens</a>
|
|
|
+ <a href="<c:url value="/"/>" class="brand-logo center hide-on-large-only">Microfolie Lens</a>
|
|
|
<a href="#!" data-target="mobile-nav" class="sidenav-trigger"><i class="material-icons">menu</i></a>
|
|
|
<div class="left mleft-2 hide-on-med-and-down">
|
|
|
- <a href="../">
|
|
|
+ <a href="<c:url value="/"/>">
|
|
|
<h5>Microfolie Lens</h5>
|
|
|
</a>
|
|
|
</div>
|
|
|
<ul class="right mright-2 hide-on-med-and-down">
|
|
|
- <li><a href="../abonnes.html">Abonnés</a></li>
|
|
|
+ <li><a href="${abonnesurl}">Abonnés</a></li>
|
|
|
<li><a href="${inscriptionurl}">Inscription</a></li>
|
|
|
- <li class="active"><a href="./">Paramétrage espace</a></li>
|
|
|
+ <li class="active"><a href="${settingsurl}">Paramétrage espace</a></li>
|
|
|
</ul>
|
|
|
</div>
|
|
|
</nav>
|
|
@@ -63,13 +65,13 @@
|
|
|
</div>
|
|
|
<div class="row center-align">
|
|
|
<div class="col l4 m6 s12">
|
|
|
- <a href="configure?espace=accueil" class="waves-effect waves-light btn-large red">Accueil</a>
|
|
|
+ <a href="<c:url value="/settings/configure?espace=accueil"/>" class="waves-effect waves-light btn-large red">Accueil</a>
|
|
|
</div>
|
|
|
<div class="col l4 m6 s12">
|
|
|
- <a href="configure?espace=imprimante3D" class="waves-effect waves-light btn-large red">Imprimante 3D</a>
|
|
|
+ <a href="<c:url value="/settings/configure?espace=imprimante3D"/>" class="waves-effect waves-light btn-large red">Imprimante 3D</a>
|
|
|
</div>
|
|
|
<div class="col l4 m6 s12">
|
|
|
- <a href="configure?espace=jeux-video" class="waves-effect waves-light btn-large red">Jeux vidéos</a>
|
|
|
+ <a href="<c:url value="/settings/configure?espace=jeux-video"/>" class="waves-effect waves-light btn-large red">Jeux vidéos</a>
|
|
|
</div>
|
|
|
</div>
|
|
|
</main>
|