Commit 0578d52453f7f7de356770691ace088e3e2afa7c
1 parent
4ac69ce407
Exists in
master
Update the home page
Showing 1 changed file with 39 additions and 21 deletions Side-by-side Diff
public/views/index.html
View file @
0578d52
... | ... | @@ -5,33 +5,51 @@ |
5 | 5 | <!-- Ensure that Bootstrap is mobile friendly --> |
6 | 6 | <meta name="viewport" content="width=device-width, initial-scale=1"> |
7 | 7 | <!-- Latest compiled and minified CSS --> |
8 | - <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> | |
8 | + <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> | |
9 | 9 | |
10 | - <!-- jQuery library --> | |
11 | - <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> | |
10 | + <!-- Optional theme --> | |
11 | + <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous"> | |
12 | 12 | |
13 | - <!-- Latest compiled JavaScript --> | |
14 | - <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> | |
15 | - </head> | |
13 | + <!-- Latest compiled and minified JavaScript --> | |
14 | + <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script> </head> | |
15 | + | |
16 | + | |
16 | 17 | <body> |
17 | - <nav class="fixed-nav-bar group nav-collapse"> | |
18 | +<!-- <nav class="fixed-nav-bar group nav-collapse"> | |
18 | 19 | <ul class="group"> |
19 | - <!-- <li><a href="Files/PaulWallaceResume.6.1.1.pdf" class="resume-link" target="_blank">Resume</a></li> --> | |
20 | + <li><a href="Files/PaulWallaceResume.6.1.1.pdf" class="resume-link" target="_blank">Resume</a></li> | |
20 | 21 | </ul> |
21 | 22 | <a href="#" id="pull" ontouchend="this.onclick=fix">Menu</a> |
22 | - </nav> | |
23 | + </nav> --> | |
23 | 24 | |
24 | - <form action=""> | |
25 | - From:<br> | |
26 | - <input type="text" name="firstname" value="Mickey"> | |
27 | - <br> | |
28 | - To:<br> | |
29 | - <input type="text" name="lastname" value="Mouse"> | |
30 | - <br><br> | |
31 | - <input type="submit" value="Submit"> | |
32 | - </form> | |
25 | + <!--asdifhasdfasdfapsdbfasdfa--> | |
33 | 26 | |
34 | - <p>If you click the "Submit" button, the form-data will be sent to a page called "action_page.php".</p> | |
27 | + | |
28 | + | |
29 | + <div class="container-fluid"> | |
30 | + | |
31 | + | |
32 | + <div class="jumbotron"> | |
33 | + <h1>Safe Routes</h1> | |
34 | + <p>The best way to find the safest routes.</p> | |
35 | + </div> | |
36 | + | |
37 | + <!--What are for and type for?--> | |
38 | + | |
39 | + <form> | |
40 | + <div class="form-group"> | |
41 | + <label for="currentLocation">From</label> | |
42 | + <input type="currentLocation" class="form-control" placeholder="Enter Current Location"> | |
43 | + </div> | |
44 | + | |
45 | + <div class="form-group"> | |
46 | + <label for="destination">To</label> | |
47 | + <input type="destination" class="form-control" placeholder="Enter Destination"> | |
48 | + </div> | |
49 | + <button type="submit" class="btn btn-primary">Go</button> | |
50 | + </form> | |
51 | + | |
52 | + </div> | |
35 | 53 | |
36 | 54 | </body> |
37 | 55 | </html> |