Commit 380ebbf0a3233f8fb37e65a8000dcc4879371553

Authored by Paul Wallace
Exists in master

Merge for the buttons with heroku

Showing 2 changed files Side-by-side Diff

1   -# Logs
2   -logs
3   -*.log
4   -npm-debug.log*
5 1  
6   -# Runtime data
7   -pids
8   -*.pid
9   -*.seed
10   -*.pid.lock
  2 +# Node build artifacts
  3 +node_modules
  4 +npm-debug.log
11 5  
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
  6 +# Local development
  7 +*.env
  8 +*.dev
22 9 .DS_Store
23 10  
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
  11 +# Docker
  12 +Dockerfile
  13 +docker-compose.yml
views/pages/index.ejs View file @ 380ebbf
... ... @@ -21,13 +21,11 @@
21 21 <label for="currentLocation">From</label>
22 22 <input type="currentLocation" class="form-control" placeholder="Enter Current Location">
23 23 </div>
24   -
25 24 <!-- Second text field and label above the text field for destination -->
26 25 <div class="form-group text-center">
27 26 <label for="destination">To</label>
28 27 <input type="destination" class="form-control" placeholder="Enter Destination">
29 28 </div>
30   -
31 29 <!-- First travel option button, walking
32 30 This contains a row that holds buttons of type button. Buttons are highlighted upon selection.
33 31 -->
... ... @@ -50,7 +48,6 @@
50 48 <button type="submit" class="btn btn-primary btn-space">Go</button>
51 49  
52 50 </div>
53   -
54 51 </form>
55 52  
56 53 </div>