Commit 101326ca authored by roxane.carraux's avatar roxane.carraux
Browse files

add navbar

parent 43df8af6
Loading
Loading
Loading
Loading
+17 −1
Original line number Diff line number Diff line
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.0/css/materialize.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.0/js/materialize.min.js"></script>
<meta charset="ISO-8859-1">
<title>All Help Proposition</title>
</head>
<body>
	<header th:insert="nav.html :: header"> </header>
	<h1>All Help Proposition</h1>
	<table class="table">
		<thead>
@@ -30,5 +33,18 @@
			</tr>
		</tbody>
	</table>

	<div class="row">
		<div class="col s12 m6">
			<div class="card blue-grey darken-1">
			<div class="card-content white-text">
				<span class="card-title">Card Title</span>
				<p>I am a very simple card. I am good at containing small bits of information.
				I am convenient because I require little markup to use effectively.</p>
				</div>
			</div>
		</div>
	</div>
	</nav>
	</body>
</html>
+4 −0
Original line number Diff line number Diff line
@@ -2,9 +2,13 @@
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="ISO-8859-1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.0/css/materialize.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.0/js/materialize.min.js"></script>
<title>All Help Request</title>
</head>
<body>
	<header th:insert="nav.html :: header"> </header>

	<h1>All Help Request</h1>
	<table class="table">
		<thead>
+5 −0
Original line number Diff line number Diff line
@@ -2,9 +2,14 @@
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="ISO-8859-1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.0/css/materialize.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.0/js/materialize.min.js"></script>
<title>MentorArc</title>
</head>
<body>
    <header th:insert="nav.html :: header"> </header>


    <table class="table">
        <thead>
            <tr>
+5 −0
Original line number Diff line number Diff line
@@ -2,9 +2,14 @@
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="ISO-8859-1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.0/css/materialize.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.0/js/materialize.min.js"></script>
<title>MentorArc</title>
</head>
	<body>

	<header th:insert="nav.html :: header"> </header>

	<h1>All Poulain</h1>
		<table class="table">
			<thead>
+5 −0
Original line number Diff line number Diff line
@@ -2,9 +2,14 @@
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="ISO-8859-1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.0/css/materialize.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.0/js/materialize.min.js"></script>
<title>Form HelpProposition</title>
</head>
	<body>

		<header th:insert="nav.html :: header"> </header>

		<h1>Form HelpProposition</h1>
		<form action="#" th:action="@{/insertHelpProposition}" th:object="${helpProposition}" method="post">
			<p>HelpProposition matiere: <input type="text" th:field="*{matiere}" /></p>
Loading