Show
Ignore:
Timestamp:
05/20/08 13:27:16 (8 months ago)
Author:
aarkerio
Message:

Remove discutions views

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/app/views/recovers/recover.ctp

    r337 r530  
    1 <div id="charging2" style="display: none;"> 
    2     <?php echo $html->image("static/loading.gif", array("alt"=>"Loading")); ?> 
    3 </div> 
     1<?php 
     2 echo $ajax->div('charging2', array('style'=>'display:none')).$html->image('static/loading.gif',array('alt'=>'Loading')).$ajax->divEnd('charging2');  
     3  
     4 echo $ajax->div('updater') . $ajax->divEnd('updater');  
    45 
    5 <div id="updater"></div> 
    6 <div class="spaced" id="form_register"> 
     6 $tmp = $ajax->form();  
    77 
    8 <?php echo $ajax->form(); ?> 
    9  
    10 <fieldset> 
    11   <legend>Recover password:</legend> 
    12       
    13     <p>Type the email used on your account:</p> 
    14       
    15      <?php echo $form->input('User.email', array("size" => 50, "maxlength" => 50, "value"=>"@")); ?> 
    16      <br /><br /> 
    17       
    18      <?php echo $ajax->submit('Send', array("url" => "/recovers/check/",  
     8 $tmp .= '<fieldset><legend>Recover password:</legend>'; 
     9 $tmp .= $html->para(null, 'Type the email used on your account:');  
     10 $tmp .= $form->input('User.email', array("size" => 30, "maxlength" => 50, "value"=>"@")); 
     11     
     12 $tmp .= $ajax->submit('Send', array("url" => "/recovers/check/",  
    1913                                         "update"=>"updater", 
    2014                                         "loading" => "Element.show('charging2');Element.hide('updater')", 
    2115                                         "complete" => "Element.hide('charging2');Effect.Appear('updater')" 
    22         )); ?> 
    23 </fieldset> 
    24 </form> 
    25 </div> 
     16        ));  
     17 $tmp .= '</fieldset></form>'; 
     18 
     19 echo $html->div('spaced', $tmp, array('id'=>'form_register')); 
     20?>