This commit is contained in:
Frederikmillingpytlick 2020-06-15 11:28:37 +02:00
parent e73e2aacdc
commit a840a4b2f0
8 changed files with 96 additions and 2 deletions

View File

@ -0,0 +1,48 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="432.544px" height="432.544px" viewBox="0 0 432.544 432.544" style="enable-background:new 0 0 432.544 432.544;"
xml:space="preserve">
<style>#Capa_1{fill:#000;}</style>
<g>
<g>
<path d="M0,313.775v118.77h118.771l237.541-237.541L237.539,76.232L0,313.775z M103.638,395.999L103.638,395.999l-30.55,0.004
v-36.546H36.545v-30.553l25.981-25.981l67.093,67.092L103.638,395.999z M246.683,124.77c4.182,0,6.276,2.095,6.276,6.28
c0,1.906-0.664,3.521-1.999,4.856L96.214,290.651c-1.333,1.328-2.952,1.995-4.854,1.995c-4.184,0-6.279-2.098-6.279-6.279
c0-1.906,0.666-3.521,1.997-4.856l154.747-154.743C243.154,125.436,244.773,124.77,246.683,124.77z"/>
<path d="M421.976,77.654l-67.091-66.806C347.653,3.619,338.992,0,328.903,0c-10.283,0-18.842,3.619-25.693,10.848l-47.394,47.109
l118.773,118.77l47.394-47.392c7.042-7.043,10.561-15.608,10.561-25.697C432.54,93.743,429.022,85.08,421.976,77.654z"/>
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -16,3 +16,6 @@
// Content // Content
@import 'content/content'; @import 'content/content';
// Tables
@import "content/table";

View File

@ -0,0 +1,31 @@
.tbl {
border-collapse: collapse;
width: 100%;
}
.tbl td, .tbl th {
border: 1px solid #ddd;
padding: 8px;
}
.tbl tr:nth-child(even){background-color: rgba(0, 0, 0, 0.1);}
.tbl tr:hover {background-color: #ddd;}
.tbl th {
padding-top: 12px;
padding-bottom: 12px;
text-align: left;
background-color: #00788a;
color: white;
}
.tbl > tbody > tr > td > a {
width: 100%;
display: flex;
}
.tbl > tbody > tr > td > a > img {
width: 1em;
margin: auto;
}

View File

@ -43,7 +43,7 @@
</div> </div>
<div class="w-85" style="background-color: #cccccc;"> <div class="w-85" style="background-color: #cccccc;">
<div class="directorypath text-white"> <div class="directorypath text-white">
<a href="" class="text-white">Home</a> / <a href="" class="text-white">Home</a> / @yield("path")
</div> </div>
<div class="content"> <div class="content">
@yield("content") @yield("content")

View File

@ -5,6 +5,10 @@
Bruger - Opret Bruger - Opret
@endsection @endsection
@section("path")
<a href="" class="text-white">Opret Bruger</a> /
@endsection
@section("content") @section("content")
<h1>Opret Bruger:</h1> <h1>Opret Bruger:</h1>
<form method="post" action=""> <form method="post" action="">

View File

@ -5,6 +5,10 @@
User - Delete User - Delete
@endsection @endsection
@section("path")
<a href="" class="text-white">Fjern Bruger</a> /
@endsection
@section("content") @section("content")
Delete Delete
@endsection @endsection

View File

@ -5,6 +5,10 @@
Bruger - Rediger Bruger - Rediger
@endsection @endsection
@section("path")
<a href="" class="text-white">Rediger Bruger</a> /
@endsection
@section("content") @section("content")
<h1>Rediger Bruger:</h1> <h1>Rediger Bruger:</h1>
<form method="post" action=""> <form method="post" action="">

View File

@ -13,7 +13,7 @@
{{----}} {{----}}
{{--Create User--}} {{--Create User--}}
{{----}}@extends("admin.user.create") {{--@extends("admin.user.create")--}}
{{--Read User--}} {{--Read User--}}
{{--@extends("admin.user.read")--}} {{--@extends("admin.user.read")--}}