<!DOCTYPE html>
<html lang="en">
  <head>
    <!-- <% include ../partials/header %> -->
  </head>

<!-- Homepage -->

  <body>
    <div class="container-fluid">
      <div class="jumbotron text-center">
        <h1>Safe Routes</h1> 
        <p>The best way to find the safest routes.</p> 
      </div>

      <!--What are for and type for?-->
      <!-- current submit button takes you to the landing page -->
      <form action="/landing">
      <!-- First text field and label above the text field for current location -->
        <div class="form-group text-center">
          <label for="currentLocation">From</label>
          <input type="currentLocation" class="form-control" placeholder="Enter Current Location">
        </div>

        <!-- Second text field and label above the text field for destination -->
        <div class="form-group text-center">
          <label for="destination">To</label>
          <input type="destination" class="form-control" placeholder="Enter Destination">
        </div>

        <!-- First travel option button, walking 
              This contains a row that holds buttons of type button. Buttons are highlighted upon selection. 
        -->
        <div class="row">
          <button type="button" class="btn-default img-thumbnail col-xs-4">
            <img class="img-responsive" src="images/pedestrian-walking.svg" alt="Walking Option" width="40" height="40">
          </button>

          <!-- Second travel button, driving -->
          <button type="button" class="btn-default img-thumbnail col-xs-4">
            <img class="img-responsive" src="images/car-compact.svg" alt="Walking Option" width="40" height="40">
          </button>

          <!-- Third travel button, bus -->
          <button type="button" class="btn-default img-thumbnail col-xs-4" onclick="javascript:autofill();">
            <img class="img-responsive" src="images/bus.svg" alt="Walking Option" width="40" height="40">
          </button>
        </div>
        <div class="text-center">
          <button type="submit" class="btn btn-primary btn-space">Go</button>

        </div>

      </form>

    </div>

  </body>
</html>