You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
407 B
22 lines
407 B
8 years ago
|
<% this.title = 'Error' %>
|
||
|
<% include header %>
|
||
|
<style type="text/css">
|
||
|
.down{
|
||
|
margin-top: 150px;
|
||
|
font-size:2em;
|
||
|
}
|
||
|
</style>
|
||
|
<div class="am-container down">
|
||
|
<p><%= err %></p>
|
||
|
</div>
|
||
|
|
||
|
<% if (typeof next !== 'undefined') { %>
|
||
|
<script type="text/javascript">
|
||
|
$(document).ready(function() {
|
||
|
setTimeout("window.location.href='<%- next %>'", 2000);
|
||
|
});
|
||
|
</script>
|
||
|
<% } %>
|
||
|
|
||
|
<% include footer %>
|