(no commit message)
authoralison benjamin <radiocontrolled@gmail.com>
Thu, 25 Aug 2011 13:49:14 +0000 (13:49 -0000)
committeralison benjamin <radiocontrolled@gmail.com>
Thu, 25 Aug 2011 13:49:14 +0000 (13:49 -0000)
docs/themes/mobile/password_reminder.tmpl.php [new file with mode: 0644]

diff --git a/docs/themes/mobile/password_reminder.tmpl.php b/docs/themes/mobile/password_reminder.tmpl.php
new file mode 100644 (file)
index 0000000..9979edb
--- /dev/null
@@ -0,0 +1,28 @@
+<?php 
+global $onload;
+$onload = 'document.form.form_email.focus();';
+
+require(AT_INCLUDE_PATH.'header.inc.php'); 
+?>
+
+<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post" name="form">
+       <input type="hidden" name="form_password_reminder" value="true" />
+       <div class="input-form" style="width: 90%;">
+       <fieldset class="group_form"><legend class="group_form"><?php echo _AT('password_reminder'); ?></legend>
+               <div class="row">
+                       <?php echo _AT('password_blurb'); ?>
+               </div>
+
+               <div class="row">
+                       <span class="required" title="<?php echo _AT('required_field'); ?>">*</span><label for="email"><?php echo _AT('email_address'); ?></label><br />
+                       <input type="text" name="form_email" id="email" size="40" />
+               </div>
+
+               <div class="row buttons">
+                       <input type="submit" name="submit" value="<?php echo _AT('submit'); ?>" /> <input type="submit" name="cancel" value=" <?php echo _AT('cancel'); ?> " />
+               </div>
+       </fieldset>
+       </div>
+</form>
+
+<?php require(AT_INCLUDE_PATH.'footer.inc.php'); ?>
\ No newline at end of file