<?php

class PageMain extends Page
{
  function Show(): string
  {
    if (array_key_exists('from', $_GET)) $PlaceFrom = $_GET['from'];
      else $PlaceFrom = '';
    if (array_key_exists('to', $_GET)) $PlaceTo = $_GET['to'];
      else $PlaceTo = '';
    if (array_key_exists('time', $_GET)) $Time = $_GET['time'];
      else $Time = '';
    $Output = '<table style="width: 100%; margin-top: 100px; margin-bottom: 100px;"><tr><td style="text-align: center">'.
      '<div><h3>Vyhledat jízdu</h3>'.
      '<form style="display: inline;" method="get" action="'.$this->System->Link('/jizdy/').'">'.
      'Odkud: <input type="text" name="from" value="'.$PlaceFrom.'"/> '.
      'Kam: <input type="text" name="to" value="'.$PlaceTo.'"/> '.
      'Čas: <input type="text" name="time" value="'.$Time.'"/> '.
      '<input type="submit" value="Hledat"/>'.
      '</form></div></td></tr></table>';
    return $Output;
  }
}
