blob: 9a6696fb7f63ebcf6fcb20fffb1e578efede71f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
<div>
<p>
<?= t("The administration session has expired, please re-authenticate to access the administration area.") ?>
</p>
<p>
<?= t("You are currently logged in as %user_name.", array("user_name" => $user_name)) ?>
</p>
<?= $form ?>
<script type="text/javascript">
$("#g-reauthenticate-form").ready(function() {
$("#g-password").focus();
});
</script>
</div>
|