-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9b56dd3
commit c539c09
Showing
5 changed files
with
55 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,11 +6,24 @@ | |
<link rel="stylesheet" href="{{ asset('css/hardware.css') }}"> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css"> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"> | ||
|
||
<link rel="icon" href="{{ asset('images/logoNethesis.png')}}"> | ||
</head> | ||
<body> | ||
<!-- Link to go back to select page --> | ||
<a href="{{route('select-hardware')}}" class="dropdown-item">Search Hardware</a> | ||
<nav class="navbar navbar-expand-lg navbar-light bg-light"> | ||
<div class="container-fluid"> | ||
<a class="navbar-brand"><img src="{{ asset('images/logoNethesis.png') }}" alt="Logo Nethesis"></a> | ||
<div class="collapse navbar-collapse" id="navbarNav"> | ||
<ul class="navbar-nav"> | ||
<li class="nav-item"> | ||
<a class="nav-link active" href="{{route('map')}}">Map</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link active" href="{{route('select-hardware')}}">Select Hardware</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</nav> | ||
<div class="scrollable-content"> | ||
<div class="container"> | ||
<h1>Find {{$installation}} Hardware</h1> | ||
|
@@ -42,7 +55,7 @@ | |
<!-- Looping through hardware details --> | ||
@foreach ($group['rows'] as $row) | ||
<!-- Displaying hardware details and occurrences --> | ||
<li>{{ $row }} <span>({{ $group['occurrences'][$row] }})</span></li> | ||
<li class="rows">{{ $row }} <span>({{ $group['occurrences'][$row] }})</span></li> | ||
@endforeach | ||
</ul> | ||
</div> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,13 +3,27 @@ | |
<head> | ||
<meta charset="UTF-8"> | ||
<title>Select Hardware</title> | ||
<link rel="stylesheet" href= "css/select.css"> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"> | ||
<link rel="stylesheet" href= "{{ asset('css/select.css') }}"> | ||
<link rel="icon" href="{{ asset('images/logoNethesis.png') }}"> | ||
</head> | ||
<body> | ||
<nav class="navbar navbar-expand-lg navbar-light bg-light"> | ||
<div class="container-fluid"> | ||
<a class="navbar-brand"><img src="{{ asset('images/logoNethesis.png') }}" alt="Logo Nethesis"></a> | ||
<div class="collapse navbar-collapse" id="navbarNav"> | ||
<ul class="navbar-nav"> | ||
<li class="nav-item"> | ||
<a class="nav-link active" href="{{route('map')}}">Map</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</nav> | ||
<div class="container"> | ||
<h1>Select Hardware</h1> | ||
<button> <a href= "{{ route('hardware', ['installation' => 'NethServer'] )}}"><strong>NethServer</strong></a></button> | ||
<button> <a href= "{{ route('hardware', ['installation' => 'NethSecurity'] )}}"><strong>NethSecurity</strong></a></button> | ||
<h1><strong>Select Hardware<strong></h1> | ||
<a class="btn btn-primary" href= "{{ route('hardware', ['installation' => 'NethServer'] )}}" role="button"><strong>NethServer</strong></a> | ||
<a class="btn btn-primary" href= "{{ route('hardware', ['installation' => 'NethSecurity'] )}}" role="button"><strong>NethSecurity</strong></a> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters