summaryrefslogtreecommitdiffstats
path: root/application/views/user/register.php
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2013-07-13 23:49:20 +0200
committerFlorian Pritz <bluewind@xinu.at>2013-07-13 23:49:20 +0200
commit6b69fa8cc2c1ca138b949d7b3b2e638f69ee1afc (patch)
tree5f5525a6b753f20d363b7625f87af9021f72efc2 /application/views/user/register.php
parent7d745f0577ad7e660f2836729682c43ec4b39aeb (diff)
Switch to bootstrap div form code instead of tables
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'application/views/user/register.php')
-rw-r--r--application/views/user/register.php53
1 files changed, 34 insertions, 19 deletions
diff --git a/application/views/user/register.php b/application/views/user/register.php
index 5fe368c99..c0050508b 100644
--- a/application/views/user/register.php
+++ b/application/views/user/register.php
@@ -3,24 +3,39 @@
echo implode("<br />\n", $error);
echo "</p>";
} ?>
-<?php echo form_open('user/register/'.$key); ?>
- <table>
- <tr>
- <td>Username</td>
- <td> <input type="text" name="username" value="<?php echo $values["username"]; ?>" /></td>
- </tr><tr>
- <td>Email</td>
- <td> <input type="text" name="email" value="<?php echo $values["email"]; ?>" /></td>
- </tr><tr>
- <td>Password</td>
- <td> <input type="password" name="password" /></td>
- </tr><tr>
- <td>Confirm password</td>
- <td> <input type="password" name="password_confirm" /></td>
- </tr><tr>
- <td></td>
- <td><input type="submit" value="Register" name="process" /></td>
- </tr>
- </table>
+<?php echo form_open('user/register/'.$key, 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 $values["username"]; ?>">
+ </div>
+ </div>
+
+ <div class="control-group">
+ <label class="control-label" for="inputEmail">Email</label>
+ <div class="controls">
+ <input type="text" id="inputEmail" name="email" placeholder="Email" value="<?php echo $values["email"]; ?>">
+ </div>
+ </div>
+
+ <div class="control-group">
+ <label class="control-label" for="inputPassword">Password</label>
+ <div class="controls">
+ <input type="password" id="inputPassword" name="password" placeholder="Password">
+ </div>
+ </div>
+
+ <div class="control-group">
+ <label class="control-label" for="inputPassword">Confirm password</label>
+ <div class="controls">
+ <input type="password" id="inputPasswordConfirm" name="password_confirm" placeholder="Password confirmation">
+ </div>
+ </div>
+
+ <div class="control-group">
+ <div class="controls">
+ <button type="submit" class="btn btn-primary" name="process">Register</button>
+ </div>
+ </div>
</form>