diff options
author | Florian Pritz <bluewind@xinu.at> | 2013-09-22 17:18:48 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2013-09-22 17:18:48 +0200 |
commit | 9538bea0908c8a3758b41967d977455af731c344 (patch) | |
tree | 5f805a22f77debba76bcd8517885c886ba26c449 /application/views/user/apikeys.php | |
parent | 3ec93bf546c4cfff82f1fb34eeae1f18319c59c1 (diff) | |
parent | e484fbe3e012a57c95963c24db190c91575e1bc5 (diff) |
Merge branch 'working-split/bootstrap3' into working
Diffstat (limited to 'application/views/user/apikeys.php')
-rw-r--r-- | application/views/user/apikeys.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/application/views/user/apikeys.php b/application/views/user/apikeys.php index aa268d678..02a11767c 100644 --- a/application/views/user/apikeys.php +++ b/application/views/user/apikeys.php @@ -19,8 +19,8 @@ <td><?php echo date("Y/m/d H:i", $item["created"]); ?></td> <td> <?php echo form_open("user/delete_apikey", array("style" => "margin-bottom: 0")); ?> - <?php echo form_hidden("key", $item["key"]); ?> - <button class="btn btn-danger btn-mini" type="submit">Delete</input> + <?php echo form_hidden("key", $item["key"]); ?> + <button class="btn btn-danger btn-xs" type="submit">Delete</input> </form> </td> </tr> @@ -29,8 +29,8 @@ </table> <p> - <?php echo form_open('user/create_apikey', array("class" => "form-horizontal")); ?> - <input type="text" name="comment" placeholder="Comment" /> - <input class="btn btn-primary" type="submit" value="Create a new key" name="process" /> - </form> + <?php echo form_open('user/create_apikey', array("class" => "form-inline")); ?> + <input type="text" name="comment" placeholder="Comment" class="form-control" style="width: 200px;"/> + <input class="btn btn-primary" type="submit" value="Create a new key" name="process" /> +</form> </p> |