This repository has been archived on 2021-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
gallery3-debian/modules/gallery/views/reauthenticate.html.php

15 lines
454 B
PHP
Raw Normal View History

2013-04-04 09:26:00 +00:00
<?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>