Commit 3c393992d6272d394665dbc3782a1ef1ea6b8b0e

Authored by Paul Wallace
1 parent 3c57c89981
Exists in master

Going back because google maps code got removed for some reason. Something stran…

…ge with git right now that I don't understand

Showing 2 changed files with 46 additions and 9 deletions Side-by-side Diff

  1 +# Logs
  2 +logs
  3 +*.log
  4 +npm-debug.log*
1 5  
2   -# Node build artifacts
3   -node_modules
4   -npm-debug.log
  6 +# Runtime data
  7 +pids
  8 +*.pid
  9 +*.seed
  10 +*.pid.lock
5 11  
6   -# Local development
7   -*.env
8   -*.dev
  12 +# Directory for instrumented libs generated by jscoverage/JSCover
  13 +lib-cov
  14 +
  15 +# Coverage directory used by tools like istanbul
  16 +coverage
  17 +
  18 +# nyc test coverage
  19 +.nyc_output
  20 +
  21 +#mac
9 22 .DS_Store
10 23  
11   -# Docker
12   -Dockerfile
13   -docker-compose.yml
  24 +# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
  25 +.grunt
  26 +
  27 +# node-waf configuration
  28 +.lock-wscript
  29 +
  30 +# Compiled binary addons (http://nodejs.org/api/addons.html)
  31 +build/Release
  32 +
  33 +# Dependency directories
  34 +node_modules
  35 +jspm_packages
  36 +
  37 +# Optional npm cache directory
  38 +.npm
  39 +
  40 +# Optional eslint cache
  41 +.eslintcache
  42 +
  43 +# Optional REPL history
  44 +.node_repl_history
  45 +
  46 +# Output of 'npm pack'
  47 +*.tgz
views/pages/index.ejs View file @ 3c39399
... ... @@ -21,11 +21,13 @@
21 21 <label for="currentLocation">From</label>
22 22 <input type="currentLocation" class="form-control" placeholder="Enter Current Location">
23 23 </div>
  24 +
24 25 <!-- Second text field and label above the text field for destination -->
25 26 <div class="form-group text-center">
26 27 <label for="destination">To</label>
27 28 <input type="destination" class="form-control" placeholder="Enter Destination">
28 29 </div>
  30 +
29 31 <!-- First travel option button, walking
30 32 This contains a row that holds buttons of type button. Buttons are highlighted upon selection.
31 33 -->
... ... @@ -48,6 +50,7 @@
48 50 <button type="submit" class="btn btn-primary btn-space">Go</button>
49 51  
50 52 </div>
  53 +
51 54 </form>
52 55  
53 56 </div>