Skip to content

Commit

Permalink
Views modified
Browse files Browse the repository at this point in the history
  • Loading branch information
iamwebwiz committed Nov 24, 2017
1 parent 43bced3 commit a0d3343
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 6 deletions.
4 changes: 4 additions & 0 deletions resources/views/layouts/app.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
body {
background-image: url({{ url('images/boat-cargo.jpg') }});
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
</style>
Expand Down Expand Up @@ -58,6 +59,9 @@
<li><a href="{{ route('login') }}">Login</a></li>
{{-- <li><a href="{{ route('register') }}">Register</a></li> --}}
@else
<li>
<a href="https://axonfreight.com/" target="_blank">Go to Main Site</a>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">
{{ Auth::user()->name }} <span class="caret"></span>
Expand Down
11 changes: 8 additions & 3 deletions resources/views/track.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
background-image: url({{ url('images/boat-cargo.jpg') }});
background-size: cover;
background-repeat: no-repeat;
font-family: Raleway;
font-weight: bold;
}
</style>
</head>
Expand All @@ -31,13 +33,16 @@
<form action="{{ route('displayTrackingDetails') }}" method="post" class="form-inline">
{{ csrf_field() }}

<div class="form-group">
<div class="form-group" style="margin-right:30px">
<label for="trackingID" class="sr-only">Tracking ID</label>
<input type="text" name="trackingID" placeholder="Enter Tracking ID" class="form-control">
<input type="text" name="trackingID" placeholder="Enter Tracking ID" class="form-control"
style="padding-left:30px;padding-right:30px;padding-top:25px;padding-bottom:25px;font-family:Raleway;
font-weight:bold">
</div>

<div class="form-group">
<button class="btn btn-success" type="submit">
<button class="btn btn-warning" type="submit" style="background:#ff6700;color:#fff;font-family:Raleway;
font-weight:bolder;padding-top:15px;padding-bottom:15px;padding-right:30px;padding-left:30px">
TRACK RESULT
</button>
</div>
Expand Down
15 changes: 12 additions & 3 deletions resources/views/trackingresult.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,13 @@
padding-top: 50px;
background-image: url({{ url('images/boat-cargo.jpg') }});
background-size: cover;
background-position: center;
background-repeat: no-repeat;
font-family: Raleway;
font-weight: bold;
}
h1,h2,h3,h4,h5,h6 {
font-weight: bolder;
}
</style>

Expand All @@ -38,13 +44,16 @@
<form action="{{ route('displayTrackingDetails') }}" method="post" class="form-inline">
{{ csrf_field() }}

<div class="form-group">
<div class="form-group" style="margin-right:30px">
<label for="trackingID" class="sr-only">Tracking ID</label>
<input type="text" name="trackingID" placeholder="Enter Tracking ID" class="form-control">
<input type="text" name="trackingID" placeholder="Enter Tracking ID" class="form-control"
style="padding-left:30px;padding-right:30px;padding-top:25px;padding-bottom:25px;font-family:Raleway;
font-weight:bold">
</div>

<div class="form-group">
<button class="btn btn-success" type="submit">
<button class="btn btn-warning" type="submit" style="background:#ff6700;color:#fff;font-family:Raleway;
font-weight:bolder;padding-top:15px;padding-bottom:15px;padding-right:30px;padding-left:30px">
TRACK RESULT
</button>
</div>
Expand Down

0 comments on commit a0d3343

Please sign in to comment.