<!DOCTYPE html> <html lang="en"> <head> <!-- <% include ../partials/header %> --> </head> <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?--> <form action="/landing"> <div class="form-group text-center"> <label for="currentLocation">From</label> <input type="currentLocation" class="form-control" placeholder="Enter Current Location"> </div> <div class="form-group text-center"> <label for="destination">To</label> <input type="destination" class="form-control" placeholder="Enter Destination"> </div> <div class="row"> <button type="button" class="btn-default col-xs-4"> <img class="img-responsive" src="images/pedestrian-walking.svg" alt="Walking Option" width="40" height="40"> </button> <button type="button" class="btn-default col-xs-4"> <img class="img-responsive" src="images/car-compact.svg" alt="Walking Option" width="40" height="40"> </button> <button type="button" class="btn-default 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>