summaryrefslogtreecommitdiff
path: root/header/index.php
diff options
context:
space:
mode:
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>