31 lines
766 B
PHP
31 lines
766 B
PHP
<?php
|
|
|
|
class SearchUI extends UI {
|
|
|
|
public function title () {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
public function display () {
|
|
|
|
parent::header();
|
|
|
|
echo '<h2>Zoek halte</h2>';
|
|
echo '<form class="mainsearch">';
|
|
echo '<div class="inputlabel"><label for="stop-searchfield">Naam of haltenummer:</label></div>';
|
|
echo '<input type="text" name="h" id="stop-searchfield"/><input type="submit" value="Zoek"/>';
|
|
echo '</form>';
|
|
|
|
/* echo '<h2>Zoek lijn</h2>';
|
|
echo '<form class="mainsearch">';
|
|
echo '<div class="inputlabel"><label for="line-searchfield">Bestemming of lijnnummer:</label></div>';
|
|
echo '<input type="text" name="l" id="line-searchfield"/><input type="submit" value="Zoek"/>';
|
|
echo '</form>';*/
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|