diff --git a/.gitignore b/.gitignore index 7872c86..8a8651d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,47 +1,13 @@ -# Logs -logs -*.log -npm-debug.log* -# Runtime data -pids -*.pid -*.seed -*.pid.lock - -# Directory for instrumented libs generated by jscoverage/JSCover -lib-cov - -# Coverage directory used by tools like istanbul -coverage - -# nyc test coverage -.nyc_output - -#mac -.DS_Store - -# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) -.grunt - -# node-waf configuration -.lock-wscript - -# Compiled binary addons (http://nodejs.org/api/addons.html) -build/Release - -# Dependency directories +# Node build artifacts node_modules -jspm_packages +npm-debug.log -# Optional npm cache directory -.npm - -# Optional eslint cache -.eslintcache - -# Optional REPL history -.node_repl_history +# Local development +*.env +*.dev +.DS_Store -# Output of 'npm pack' -*.tgz \ No newline at end of file +# Docker +Dockerfile +docker-compose.yml diff --git a/views/pages/index.ejs b/views/pages/index.ejs index 058a363..fe03595 100644 --- a/views/pages/index.ejs +++ b/views/pages/index.ejs @@ -21,13 +21,11 @@ <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. --> @@ -50,7 +48,6 @@ <button type="submit" class="btn btn-primary btn-space">Go</button> </div> - </form> </div>