lemonldap-ng/lemonldap-ng-portal/site/templates/impact/error.tpl
Xavier Guimard 18d00d44b8 Reorganize templates (#595)
- mv *.tpl in site/templates
- manage external javascripts with bower
- mv the rest in site/static
2016-04-14 05:17:51 +00:00

40 lines
1.4 KiB
Smarty

<TMPL_INCLUDE NAME="header.tpl">
<div id="content">
<div id="content-all">
<div class="title">
<img src="<TMPL_VAR NAME="SKIN_PATH">/<TMPL_VAR NAME="SKIN">/images/logo-warn.png" />
<span trspan="warning">Warning</span>
</div>
<p></p>
<div id="content-all-info">
<TMPL_IF ERROR403>
<h3 trspan="accessDenied">You have no access authorization for this application</h3>
</TMPL_IF>
<TMPL_IF ERROR500>
<h3 trspan="serverError">Error occurs on the server</h3>
</TMPL_IF>
<TMPL_IF ERROR503>
<h3 trspan="maintenanceMode">This application is in maintenance, please try to connect later</h3>
</TMPL_IF>
<TMPL_IF URL>
<h3>
<span trspan="redirectedFrom">You were redirect from </span>
<a href="<TMPL_VAR NAME="URL">"><TMPL_VAR NAME="URL"></a>
</h3>
</TMPL_IF>
</div>
<div class="panel-buttons">
<button type="button" class="positive" tabindex="1" onclick="location.href='<TMPL_VAR NAME="PORTAL_URL">';return false;">
<span trspan="goToPortal">Go to portal</span>
</button>
<button type="button" class="negative" tabindex="2" onclick="location.href='<TMPL_VAR NAME="LOGOUT_URL">';return false;">
<span trspan="logout">Logout</span>
</button>
</div>
</div>
</div>
<TMPL_INCLUDE NAME="footer.tpl">