Login de usuario

Mais
14 anos 7 meses atrás #44216 por joolama
joolama replied the topic: Re: Login de usuario
ola como vai o login de meu site sumiu

nao aparece no site e nem na areade admin de componentes como fazer para colocar de novo ??

Please Entrar ou Registrar to join the conversation.

Mais
14 anos 7 meses atrás #44218 por liclopes
liclopes replied the topic: Re: Login de usuario
Modifica o arquivo "offline.php" na pasta "templates" ~> "system" com o código abaixo:
<?php
defined( '_JEXEC' ) or die( 'Restricted access' );
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>">

<head>
	<jdoc:include type="head" />
	<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/system/css/offline.css" type="text/css" />
	<?php if($this->direction == 'rtl') : ?>
	<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/system/css/offline_rtl.css" type="text/css" />
	<?php endif; ?>
	<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/system/css/system.css" type="text/css" />
</head>

<body>
<div id="wrapper">
<jdoc:include type="message" />
	<div id="frame" class="outline">
		<img src="images/joomla_logo_black.jpg" alt="Joomla! Logo" align="middle" />
		<h1>
			<?php echo $mainframe->getCfg('sitename'); ?>
		</h1>
	<p>
		<?php echo $mainframe->getCfg('offline_message'); ?>
	</p>
<br><br>

	</div>
</div>
</body>

</html>

Apague o seguinte código:
<?php if(JPluginHelper::isEnabled('authentication', 'openid')) : ?>
	<?php JHTML::_('script', 'openid.js'); ?>
<?php endif; ?>
	<form action="index.php" method="post" name="login" id="form-login">
	<fieldset class="input">
		<p id="form-login-username">
			<label for="username"><?php echo JText::_('Username') ?></label><br />
			<input name="username" id="username" type="text" class="inputbox" alt="<?php echo JText::_('Username') ?>" size="18" />
		</p>
		<p id="form-login-password">
			<label for="passwd"><?php echo JText::_('Password') ?></label><br />
			<input type="password" name="passwd" class="inputbox" size="18" alt="<?php echo JText::_('Password') ?>" id="passwd" />
		</p>
		<p id="form-login-remember">
			<label for="remember"><?php echo JText::_('Remember me') ?></label>
			<input type="checkbox" name="remember" class="inputbox" value="yes" alt="<?php echo JText::_('Remember me') ?>" id="remember" />
		</p>
		<input type="submit" name="Submit" class="button" value="<?php echo JText::_('LOGIN') ?>" />
	</fieldset>
	<input type="hidden" name="option" value="com_user" />
	<input type="hidden" name="task" value="login" />
	<input type="hidden" name="return" value="<?php echo base64_encode(JURI::base()) ?>" />
	<?php echo JHTML::_( 'form.token' ); ?>
	</form>

Please Entrar ou Registrar to join the conversation.

  • elsonlany
  • Avatar de elsonlany Autor do Tópico
  • Offline
  • JCB! Junior
  • JCB! Junior
Mais
14 anos 7 meses atrás #44301 por elsonlany
elsonlany replied the topic: Re: Login de usuario
Galera obrigado pela ajuda, o problema foi resolvido.

Valeu mesmo.

Um forum igual a esse é nota 1000000. Parabens a todos q fazem parte do mesmo.

Please Entrar ou Registrar to join the conversation.