summaryrefslogtreecommitdiffstats
path: root/application/views/user/reset_password_username_form.php
diff options
context:
space:
mode:
authorMarkus Cisler <m@kuchen.io>2013-09-22 14:12:01 +0200
committerFlorian Pritz <bluewind@xinu.at>2013-09-22 16:30:56 +0200
commit43b23943ef3d9ce20accf250bb796b0b9454e8a4 (patch)
tree59a4b84c368a4669f8898dd1a14f46990f787b46 /application/views/user/reset_password_username_form.php
parentf872de7d981eeeb506f23c99412bb7de584c661d (diff)
fix forms on so called medium device desktops
Diffstat (limited to 'application/views/user/reset_password_username_form.php')
-rw-r--r--application/views/user/reset_password_username_form.php26
1 files changed, 13 insertions, 13 deletions
diff --git a/application/views/user/reset_password_username_form.php b/application/views/user/reset_password_username_form.php
index e72c30850..5329a0b7e 100644
--- a/application/views/user/reset_password_username_form.php
+++ b/application/views/user/reset_password_username_form.php
@@ -1,19 +1,19 @@
<?php echo form_open('user/reset_password', array("class" => "form-horizontal")); ?>
- <div class="row">
- <div class="form-group col-lg-8">
- <label class="control-label col-lg-2" for="inputUsername">Username</label>
- <div class="col-lg-5">
- <input type="text" id="inputUsername" name="username" placeholder="Username" value="<?php echo isset($username) ? $username : ""; ?>" class="form-control">
- </div>
- </div>
+<div class="row">
+ <div class="form-group col-lg-8 col-md-10">
+ <label class="control-label col-lg-2 col-md-2" for="inputUsername">Username</label>
+ <div class="col-lg-5 col-md-5">
+ <input type="text" id="inputUsername" name="username" placeholder="Username" value="<?php echo isset($username) ? $username : ""; ?>" class="form-control">
+ </div>
</div>
+</div>
- <div class="row">
- <div class="form-group col-lg-8">
- <div class="col-lg-offset-2 col-lg-5">
- <button type="submit" class="btn btn-primary" name="process">Send mail</button>
- </div>
- </div>
+<div class="row">
+ <div class="form-group col-lg-8 col-md-10">
+ <div class="col-lg-offset-2 col-lg-5 col-md-offset-2 col-md-5">
+ <button type="submit" class="btn btn-primary" name="process">Send mail</button>
+ </div>
</div>
+</div>
</form>