Commit 0578d52453f7f7de356770691ace088e3e2afa7c

Authored by Paul Wallace
1 parent 4ac69ce407
Exists in master

Update the home page

Showing 1 changed file with 39 additions and 21 deletions Inline Diff

public/views/index.html View file @ 0578d52
<!DOCTYPE html> 1 1 <!DOCTYPE html>
<html lang="en"> 2 2 <html lang="en">
<head> 3 3 <head>
<meta charset="utf-8"> 4 4 <meta charset="utf-8">
<!-- Ensure that Bootstrap is mobile friendly --> 5 5 <!-- Ensure that Bootstrap is mobile friendly -->
<meta name="viewport" content="width=device-width, initial-scale=1"> 6 6 <meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Latest compiled and minified CSS --> 7 7 <!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> 8 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
<!-- jQuery library --> 10 10 <!-- Optional theme -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> 11 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
<!-- Latest compiled JavaScript --> 13 13 <!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> 14 14 <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script> </head>
</head> 15 15
16
<body> 16 17 <body>
<nav class="fixed-nav-bar group nav-collapse"> 17 18 <!-- <nav class="fixed-nav-bar group nav-collapse">
<ul class="group"> 18 19 <ul class="group">
<!-- <li><a href="Files/PaulWallaceResume.6.1.1.pdf" class="resume-link" target="_blank">Resume</a></li> --> 19 20 <li><a href="Files/PaulWallaceResume.6.1.1.pdf" class="resume-link" target="_blank">Resume</a></li>
</ul> 20 21 </ul>
<a href="#" id="pull" ontouchend="this.onclick=fix">Menu</a> 21 22 <a href="#" id="pull" ontouchend="this.onclick=fix">Menu</a>
</nav> 22 23 </nav> -->
23 24
<form action=""> 24 25 <!--asdifhasdfasdfapsdbfasdfa-->
From:<br> 25
<input type="text" name="firstname" value="Mickey"> 26
<br> 27
To:<br> 28
<input type="text" name="lastname" value="Mouse"> 29
<br><br> 30
<input type="submit" value="Submit"> 31
</form> 32
33 26
<p>If you click the "Submit" button, the form-data will be sent to a page called "action_page.php".</p> 34 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
</body> 36 54 </body>
</html> 37 55 </html>