team_directory/resources/views/User/index.blade.php

46 lines
2.4 KiB
PHP
Raw Permalink Normal View History

2023-05-25 15:04:43 -04:00
@extends('Layouts.layout')
@section('Title', 'Home')
@section('css')
<link href="{{ asset('/css/index.css') }}" rel="stylesheet">
@stop
@section('Content')
<body>
<div id="loadOverlay" style="background-color:#ffffff; position:absolute; top:0px; left:0px; width:100%; min-height:1500vh; z-index:2000;"></div>
<div class="container text-center">
<div class="row align-items-start">
<div class="row" id="logo">
<img id="logo-image" src="{{asset('/assets/user-logo.png')}}" alt="Teams logo">
</div>
<form method="POST" action={{ action('App\Http\Controllers\IndexController@search') }} enctype="multipart/form-data">
@csrf
@method('post')
<div class="row" id="search-row">
<div class="search">
<span class="icon"><svg id="search-icon" xmlns="http://www.w3.org/2000/svg" width="17.49" height="17.49" fill="rgba(255, 62, 62, 0.76)" class="bi bi-search" viewBox="0 0 16 16"><path d="M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z"/></svg></span>
<input type="text" name="search" class="form-control shadow-none" placeholder="Search by name, department or location...">
</div>
</div>
<div class="row" id="button-row">
<div class="button-group">
<button type="submit" class="btn-sm" id="search-btn">Search</button>
<button type="button" class="btn-sm" id="view-btn" onclick="location.href='{{route('user.employees')}}'">View All</button>
</div>
</div>
</form>
<div class="row" id="disclaimer-row">
<div class="disclaimer-group">
<h6 id="title">DISCLAIMER</h6>
2023-06-01 18:44:15 -04:00
<p id="disclaimer">For any inquiries on information represented here, please contact the IT unit at extension 4006 or 4009.</p>
2023-05-25 15:04:43 -04:00
</div>
</div>
</div>
</div>
2023-05-31 16:23:00 -04:00
</body>
@stop