38 lines
975 B
Text
38 lines
975 B
Text
|
<!doctype html>
|
||
|
<html lang="fr">
|
||
|
<%- include('partials/head'); %>
|
||
|
<body>
|
||
|
<header>
|
||
|
<%- include('partials/header'); %>
|
||
|
</header>
|
||
|
|
||
|
|
||
|
<div id="toastr"></div>
|
||
|
|
||
|
<main class="mt-4 mb-5">
|
||
|
|
||
|
<% if ( page.failureFlash ) {%>
|
||
|
<div class="alert alert-danger" role="alert">
|
||
|
<%= page.failureFlash %>
|
||
|
</div>
|
||
|
<% } %>
|
||
|
|
||
|
<%
|
||
|
if (error && error.length > 0) {
|
||
|
for( let i = 0 ; i < error.length ; i += 1 ) {
|
||
|
%>
|
||
|
<div class="alert alert-danger" role="alert">
|
||
|
<%= error %>
|
||
|
</div>
|
||
|
<%
|
||
|
}
|
||
|
}
|
||
|
%>
|
||
|
<%- include(viewname) %>
|
||
|
</main>
|
||
|
<footer class="bg-light text-lg-start">
|
||
|
<%- include('partials/footer'); %>
|
||
|
</footer>
|
||
|
</body>
|
||
|
</html>
|