2019-07-11 23:55:51 +02:00
|
|
|
<!DOCTYPE>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
|
|
|
|
<title>E-OSP</title>
|
2019-12-07 15:38:45 +01:00
|
|
|
<link rel="stylesheet" href="{{ asset('css/theme.css') }}">
|
2019-12-07 14:55:18 +01:00
|
|
|
<link rel="stylesheet" href="{{asset('css/app.css')}}">
|
2019-12-25 22:35:20 +01:00
|
|
|
|
2020-01-13 04:34:20 +01:00
|
|
|
{{-- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">--}}
|
2019-12-25 22:35:20 +01:00
|
|
|
|
2020-01-22 00:54:08 +01:00
|
|
|
<script src="js/app.js"></script>
|
2020-01-13 04:34:20 +01:00
|
|
|
{{-- <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>--}}
|
2020-01-22 00:54:08 +01:00
|
|
|
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@9"></script>
|
2019-12-25 22:35:20 +01:00
|
|
|
|
|
|
|
|
2019-07-11 23:55:51 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
2019-09-11 00:09:22 +02:00
|
|
|
@if( auth()->check() )
|
|
|
|
{{ auth()->user()->name }}
|
|
|
|
{{ auth()->user()->surname }}
|
2019-12-24 01:37:01 +01:00
|
|
|
<a href="/logout">Wyloguj</a>
|
|
|
|
<a href="/userprofile">Mój profil</a>
|
2019-09-11 00:09:22 +02:00
|
|
|
@else
|
2019-12-24 01:37:01 +01:00
|
|
|
<a href="/login">Zaloguj się</a>
|
|
|
|
<a href="/register">Rejestracja</a>
|
2019-09-11 00:09:22 +02:00
|
|
|
@endif
|
2019-07-11 23:55:51 +02:00
|
|
|
<div id="header">
|
2020-01-05 14:48:15 +01:00
|
|
|
<div class="logo"><a href="/register"><img src="/img/logo.png"></a></div>
|
2019-07-11 23:55:51 +02:00
|
|
|
@include('inc.menu')
|
|
|
|
<div class="userInfo">
|
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<hr>
|
|
|
|
<div id="work-space">
|
|
|
|
|
|
|
|
@include('inc.left-menu')
|
|
|
|
@include('inc.center-area')
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</body>
|
2019-09-11 00:09:22 +02:00
|
|
|
</html>
|