move complaint to navbar

This commit is contained in:
Audrey Jensen 2023-07-10 21:13:12 +00:00
parent 88fc7b13fe
commit 36f0c1861e
3 changed files with 6 additions and 3 deletions

View File

@ -18,8 +18,6 @@ Cards:
Ticket Archives: Ticket Archives:
- {title: 'Request Portal', url: 'archive/tickets/default/1'} - {title: 'Request Portal', url: 'archive/tickets/default/1'}
- {title: 'Sales Portal', url: 'archive/tickets/sales/1'} - {title: 'Sales Portal', url: 'archive/tickets/sales/1'}
Company Links:
- { title: 'Anonymous Complaint', url: 'services/anonymous.php'}
Freight: Freight:
- { title: 'Track UPS by SRO#', url: 'http://site:81/UPS_Tracking.html'} - { title: 'Track UPS by SRO#', url: 'http://site:81/UPS_Tracking.html'}
- { title: 'Track FedEx by SRO#', url: 'http://site:81/FedExTracking.html'} - { title: 'Track FedEx by SRO#', url: 'http://site:81/FedExTracking.html'}

View File

@ -18,7 +18,7 @@ use Symfony\Component\Mime\Address;
class ComplaintController extends AbstractController class ComplaintController extends AbstractController
{ {
#[Route('/complaint')] #[Route('/complaint', name: 'complaint')]
public function Index(Request $request, TransportTransportInterface $mailer,LoggerInterface $log) : Response public function Index(Request $request, TransportTransportInterface $mailer,LoggerInterface $log) : Response
{ {
$form = $this->createForm(AnonymousComplaintType::class); $form = $this->createForm(AnonymousComplaintType::class);

View File

@ -30,6 +30,11 @@
<a class=" list-group-item list-group-item-action text-decoration-none h-100 text-white border-0" href="{{ path('safetyHome')}}"> <a class=" list-group-item list-group-item-action text-decoration-none h-100 text-white border-0" href="{{ path('safetyHome')}}">
Safety Training Safety Training
</a> </a>
</h3>
<h3 class="navitem">
<a class=" list-group-item list-group-item-action text-decoration-none h-100 text-white border-0" href="{{ path('complaint')}}">
Anonymous Complaint
</a>
</h3> </h3>
</ul> </ul>
</div> </div>