Retroceder   Foros del Web > Diseño de Sitios web > Aplicaciones pre-fabricadas

Respuesta
 
Herramientas Desplegado
Antiguo 09-ene-2006, 14:30   #1 (permalink)
striderwar ha deshabilitado el karma
 
Fecha de Ingreso: diciembre-2005
Mensajes: 12
Bloke login - osCommerce, ayuda !

por favor ayudenem, en el bloke de oscommerce de Login, no me aparece la imagen

Cita:
<?php
/*
$Id: login.php


*/
?>
<!-- search //-->
<tr>
<td>
<?php

if (tep_session_is_registered('customer_id')) // el usuario esta conectado
{
$form_header = BOX_HEADING_LOGED;
$form_content = BOX_HEADING_WELLCOME . ' ' . $customer_first_name . '<br>';
$form_content .= '<a href="' . tep_href_link(FILENAME_ACCOUNT, '', 'SSL') . '">' . BOX_LOGIN_VIEW . '</a><br>';
$form_content .= '<a href="' . tep_href_link(FILENAME_LOGOFF, '', 'SSL') . '">' . BOX_LOGIN_LOGOUT . '</a>';
} else {
$form_header = BOX_HEADING_LOGIN;
$form_content = BOX_LOGIN_USERNAME . '<br><input type="text" name="email_address" size="10" maxlength="50" style="width: ' . (BOX_WIDTH-16) . 'px"><br>';
$form_content .= BOX_LOGIN_PASSWORD . '<br><input type="password" name="password" size="10" maxlength="40" style="width: ' . (BOX_WIDTH-36) . 'px"><br>&nbsp;';
$form_content .= tep_image_submit('images/button_entrar.gif', 'Entrar a Mi Cuenta');
$form_content .= '<br><a href="' . tep_href_link(FILENAME_CREATE_ACCOUNT) . '">' . BOX_LOGIN_NEWACCOUNT . '</b></a>';
$form_content .= '<br><a href="' . tep_href_link(FILENAME_PASSWORD_FORGOTTEN, '', 'SSL') . '">' . BOX_LOGIN_PASSWORD_FORGOTTEN . '</a>';
}

$info_box_contents = array();
$info_box_contents[] = array('align' => 'left',
'text' => $form_header
);
new infoBoxHeading($info_box_contents);

$hide = tep_hide_session_id();
$info_box_contents = array();
$info_box_contents[] = array('form' => '<form name="login" method="post" action="' . tep_href_link(FILENAME_LOGIN, 'action=process', 'SSL') . '">',
'align' => 'left',
'text' => $hide . $form_content
);
new infoBox($info_box_contents);

// BOX_LOGIN_LOGOUT
?>
</td>
</tr>
<!-- search_eof //-->

Última edición por striderwar; 09-ene-2006 a las 14:36.
striderwar está desconectado   Responder Citando
Respuesta
No hay votos aún.


Herramientas
Desplegado

Normas de Publicación
No puedes crear nuevos temas
No puedes responder temas
No puedes subir archivos adjuntos
No puedes editar tus mensajes

BB code is Activado
Caritas están Activado
[IMG] está Activado
Código HTML está Desactivado


La Zona horaria es GMT -6. Ahora son las 23:09.


Message Board Statistics

LinkBacks Enabled by vBSEO 3.1.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93