summaryrefslogtreecommitdiff
path: root/header/index.php
diff options
context:
space:
mode:
authorroot2014-11-27 17:59:00 +0100
committerroot2014-11-27 17:59:00 +0100
commit08f3b8c3930ecc009f3473d9cae9e26ad17fb23d (patch)
treefcf7091769bb859da5856d42588f7774ed8452c0 /header/index.php
parent4f923b809b4e38e0639e253f428fb6c4df03ee67 (diff)
downloadtools.iamfabulous.de-08f3b8c3930ecc009f3473d9cae9e26ad17fb23d.tar.gz
Small improvements.
Diffstat (limited to 'header/index.php')
-rw-r--r--header/index.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/header/index.php b/header/index.php
index b57643d..056cde5 100644
--- a/header/index.php
+++ b/header/index.php
@@ -161,7 +161,7 @@ Host: "<u><?php echo strtolower(htmlentities($header_info[2])); ?></u>"</pre></h
<!-- Text input-->
<div class="form-group">
- <label class="col-md-4 control-label" for="header[]">(optional)</label>
+ <label class="col-md-4 control-label grey" for="header[]">(optional)</label>
<div class="col-md-4">
<div class="input-group">
<input name="header[]" placeholder="Custom request header here." class="form-control input-md" type="text">
@@ -201,7 +201,7 @@ Host: "<u><?php echo strtolower(htmlentities($header_info[2])); ?></u>"</pre></h
function addInput(divName){
var newdiv = document.createElement('div');
newdiv.className = newdiv.className + "form-group"
- newdiv.innerHTML = "<label class='col-md-4 control-label' for='header[]'></label><div class='col-md-4'> <input type='text' name='header[]' placeholder='More header.' class='form-control input-md' ></input></div>";
+ newdiv.innerHTML = "<label class='col-md-4 control-label' for='header[]'></label><div class='col-md-4'> <input type='text' name='header[]' placeholder='Add more header.' class='form-control input-md' ></input></div>";
document.getElementById(divName).appendChild(newdiv);
}
</script>