summaryrefslogtreecommitdiffstats
path: root/application/views/user/reset_password_username_form.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/views/user/reset_password_username_form.php')
-rw-r--r--application/views/user/reset_password_username_form.php23
1 files changed, 13 insertions, 10 deletions
diff --git a/application/views/user/reset_password_username_form.php b/application/views/user/reset_password_username_form.php
index dde6d5aa0..674a6441d 100644
--- a/application/views/user/reset_password_username_form.php
+++ b/application/views/user/reset_password_username_form.php
@@ -1,12 +1,15 @@
-<?php echo form_open('user/reset_password'); ?>
- <table>
- <tr>
- <td>Username</td>
- <td> <input type="text" name="username" /></td>
- </tr><tr>
- <td></td>
- <td><input type="submit" value="Send mail" name="process" /></td>
- </tr>
- </table>
+<?php echo form_open('user/reset_password', array("class" => "form-horizontal")); ?>
+ <div class="control-group">
+ <label class="control-label" for="inputUsername">Username</label>
+ <div class="controls">
+ <input type="text" id="inputUsername" name="username" placeholder="Username" value="<?php echo isset($username) ? $username : ""; ?>">
+ </div>
+ </div>
+
+ <div class="control-group">
+ <div class="controls">
+ <button type="submit" class="btn btn-primary" name="process">Send mail</button>
+ </div>
+ </div>
</form>