Changeset 40
- Timestamp:
- 03/15/06 09:28:45 (2 years ago)
- Files:
-
- trunk/public_html/akarru.gui/recover_pass_form.php (deleted)
- trunk/public_html/recover_pass.php (modified) (1 diff)
- trunk/smarty/configs/site.conf (modified) (2 diffs)
- trunk/smarty/templates/recover_pass.tpl (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/public_html/recover_pass.php
r2 r40 2 2 include_once('akarru.lib/common.php'); 3 3 if (empty($_POST['email'])) { 4 $bm_content = ' akarru.gui/recover_pass_form.php';4 $bm_content = 'recover_pass'; 5 5 } 6 6 else 7 7 { 8 $email = $_POST['email']; 8 9 $subject = '['.$bm_site_name.'] '.$bl_recover; 9 10 $pass = $bm_users->gen_password($email, $subject, $bf_recover_pass, $bm_login_url); 10 11 $bm_info_text = $bl_password_sent; 11 12 $bm_info_title = ' ' ; 12 $bm_content = ' akarru.gui/info.php';13 $bm_content = 'password_sent'; 13 14 } 14 $bm_no_folkbar = true; 15 $bm_title = $bl_recover_pass; 16 include_once('akarru.gui/master_page.php'); 15 $smarty->assign('content_title', $bl_recover_pass); 16 $smarty->assign('content', $bm_content); 17 $smarty->assign('show_ads', true); 18 $smarty->display('master_page.tpl'); 17 19 ?> trunk/smarty/configs/site.conf
r25 r40 37 37 label_login_email="correo electrónico" 38 38 label_register_submit="registra cuenta" 39 label_recover_pass_submit="recuperar email" 39 40 40 41 post_instructions='un meme es una unidad de transmisión cultural' … … 70 71 tag_submit_label='etiquetar' 71 72 73 recover_done_message=Si tu email está registrado en este sitio recibirás tu nueva clave 72 74 73 75
