move code up one directory
[atutor.git] / themes / default / password_reminder.tmpl.php
1 <?php 
2 global $onload;
3 $onload = 'document.form.form_email.focus();';
4
5 require(AT_INCLUDE_PATH.'header.inc.php'); 
6 ?>
7
8 <form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post" name="form">
9         <input type="hidden" name="form_password_reminder" value="true" />
10         <div class="input-form" style="width: 90%;">
11         <fieldset class="group_form"><legend class="group_form"><?php echo _AT('password_reminder'); ?></legend>
12                 <div class="row">
13                         <?php echo _AT('password_blurb'); ?>
14                 </div>
15
16                 <div class="row">
17                         <span class="required" title="<?php echo _AT('required_field'); ?>">*</span><label for="email"><?php echo _AT('email_address'); ?></label><br />
18                         <input type="text" name="form_email" id="email" size="50" />
19                 </div>
20
21                 <div class="row buttons">
22                         <input type="submit" name="submit" value="<?php echo _AT('submit'); ?>" /> <input type="submit" name="cancel" value=" <?php echo _AT('cancel'); ?> " />
23                 </div>
24         </fieldset>
25         </div>
26 </form>
27
28 <?php require(AT_INCLUDE_PATH.'footer.inc.php'); ?>