git-svn-id: https://192.168.0.254/svn/Proyectos.FundacionLQDVI_WebCongresos/trunk@2 94ccb1af-fd9d-d947-8d90-7f70ea60afc8
42 lines
1.2 KiB
PHP
42 lines
1.2 KiB
PHP
<?php
|
|
/**
|
|
* @package AkeebaBackup
|
|
* @copyright Copyright (c)2006-2010 Nicholas K. Dionysopoulos
|
|
* @license GNU General Public License version 3, or later
|
|
* @version $Id: default.php 188 2010-07-18 14:15:12Z nikosdion $
|
|
* @since 2.1
|
|
*/
|
|
|
|
// Protect from unauthorized access
|
|
defined('_JEXEC') or die('Restricted Access');
|
|
|
|
?>
|
|
<html>
|
|
<head>
|
|
<title><?php echo JText::_('LIGHT_HEADER');?></title>
|
|
</head>
|
|
<body>
|
|
<h1><?php echo JText::_('LIGHT_HEADER');?></h1>
|
|
<form action="index.php" method="post" name="adminForm" id="adminForm">
|
|
<input type="hidden" name="option" value="com_akeeba" />
|
|
<input type="hidden" name="view" value="light" />
|
|
<input type="hidden" name="format" value="raw" />
|
|
<input type="hidden" name="task" value="authenticate" />
|
|
<table border="0">
|
|
<tr>
|
|
<td><label for="profile"><?php echo JText::_('LIGHT_LABEL_PROFILE'); ?></label></td>
|
|
<td><?php echo JHTML::_('select.genericlist', $this->profilelist, 'profile'); ?></td>
|
|
</tr>
|
|
<tr>
|
|
<td><label for="key"><?php echo JText::_('LIGHT_LABEL_SECRET'); ?></label></td>
|
|
<td><input type="text" name="key" size="20"></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2"><input type="submit"
|
|
value="<?php echo JText::_('LIGHT_LABEL_SUBMIT'); ?>" /></td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</body>
|
|
</html>
|