mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-26 17:29:21 +02:00
19 lines
528 B
Twig
19 lines
528 B
Twig
{% set title = 'Login Successful' %}
|
|
{% set background = config('darkborder') %}
|
|
{% set content %}
|
|
<table style="width:100%;" >
|
|
<tr>
|
|
<td>You have logged in.<br/>Press <a href="{{ redirect }}" >here</a> if you are not returned automatically.</td>
|
|
</tr>
|
|
</table>
|
|
{% endset %}
|
|
{% include 'tables.headline.html.twig' %}
|
|
|
|
<script language="javascript" type="text/javascript">
|
|
// Automatic redirect
|
|
setTimeout ("automaticRedirect()", 1000);
|
|
function automaticRedirect() {
|
|
window.location = "{{ redirect|raw }}";
|
|
}
|
|
</script>
|