summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorGuillaume Mazoyer <respawneral@gmail.com>2014-05-29 16:40:22 +0200
committerGuillaume Mazoyer <respawneral@gmail.com>2014-05-29 16:40:22 +0200
commit6487a4a4fe5a28c29a0f99d29347ca71e087286a (patch)
treedbbc331b78dc5718e2a90f14d7642f0a476c7e8c /index.php
parentd6ca3b624eebdc1bcda08c85b4977edb95a8de36 (diff)
Fix form-control for tags.
Diffstat (limited to 'index.php')
-rw-r--r--index.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/index.php b/index.php
index 339e031..25fcfa8 100644
--- a/index.php
+++ b/index.php
@@ -47,7 +47,7 @@ require_once 'config.php';
<form role="form" action="execute.php" method="post">
<div class="form-group">
<label for="routers">Router to use</label>
- <select size="5" class="form-control" name="routers">
+ <select size="5" class="form-control" id="routers">
<?php
$first = true;
foreach (array_keys($config['routers']) as $router) {
@@ -66,7 +66,7 @@ require_once 'config.php';
<div class="form-group">
<label for="query">Command to issue</label>
- <select size="5" class="form-control" name="query" id="query">
+ <select size="5" class="form-control" id="query">
<option value="bgp" selected="selected">show route IP_ADDRESS</option>
<option value="as-path-regex">show route as-path-regex AS_PATH_REGEX</option>
<option value="as">show route AS</option>
@@ -76,8 +76,8 @@ require_once 'config.php';
</div>
<div class="form-group">
- <label for="parameters">Parameters</label>
- <input class="form-control" name="parameters" id="input-params" />
+ <label for="input-params">Parameters</label>
+ <input class="form-control" id="input-params" />
</div>
<div class="confirm btn-group btn-group-justified">