forked from s421507/eOSP2
49 lines
1.5 KiB
PHP
49 lines
1.5 KiB
PHP
<!DOCTYPE>
|
|
<html>
|
|
<head>
|
|
|
|
<title>E-OSP</title>
|
|
<link rel="stylesheet" href="{{ asset('css/theme.css') }}">
|
|
<link rel="stylesheet" href="{{asset('css/app.css')}}">
|
|
|
|
{{-- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">--}}
|
|
|
|
<script src="js/app.js"></script>
|
|
{{-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" />--}}
|
|
{{-- <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script>--}}
|
|
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@9"></script>
|
|
|
|
|
|
</head>
|
|
<body>
|
|
@if( auth()->check() )
|
|
{{ auth()->user()->name }}
|
|
{{ auth()->user()->surname }}
|
|
<a href="/logout">Wyloguj</a>
|
|
<a href="/userprofile">Mój profil</a>
|
|
@else
|
|
<a href="/login">Zaloguj się</a>
|
|
<a href="/register">Rejestracja</a>
|
|
@endif
|
|
<div id="header">
|
|
<div class="logo"><a href="/register"><img src="/img/logo.png"></a></div>
|
|
@include('inc.menu')
|
|
<div class="userInfo">
|
|
<?php
|
|
|
|
|
|
?>
|
|
</div>
|
|
</div>
|
|
<hr>
|
|
<div id="work-space">
|
|
|
|
@include('inc.left-menu')
|
|
@include('inc.center-area')
|
|
|
|
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|