Created, moved and renamed views

This commit is contained in:
Frederikmillingpytlick 2020-06-16 09:04:25 +02:00
parent a2c7d619b1
commit 60bd31e54b
11 changed files with 121 additions and 7 deletions

View File

@ -0,0 +1,13 @@
@extends("admin.layout.base")
@extends("admin.layout.header")
@section("title")
Bruger - Fjern
@endsection
@section("path")
<a href="" class="text-white">Fjern Bruger</a> /
@endsection
@section("content")
@endsection

View File

@ -0,0 +1,14 @@
@extends("admin.layout.base")
@extends("admin.layout.header")
@section("title")
Bruger - Rediger
@endsection
@section("path")
<a href="" class="text-white">Rediger Bruger</a> /
@endsection
@section("content")
@endsection

View File

@ -2,7 +2,7 @@
@extends("admin.layout.header")
@section("title")
User - Read
Bruger - Vis
@endsection
@section("path")

View File

@ -0,0 +1,26 @@
@extends("app.layout.base")
@section("title")
Login
@endsection
@section("content")
<main style="background-color: #00788a; height: 100%;">
<div class="brand">
<img src="{{URL::asset('/images/logos/Logo-hvid.svg')}}" alt="Syddansk Erhvervsskole">
</div>
<form action="" method="post">
<input class="appinput" type="email" name="email" placeholder="Email" required>
<input class="appinput" type="password" name="password" placeholder="Password" required>
<label class="toggle">
<input class="toggle__input" type="checkbox" name="rememberpassword">
<span class="toggle__label">
<span class="toggle__text text-white">Remember password</span>
</span>
</label>
<input class="btn btn-dark" type="submit" value="Sign in">
<button class="btn" onclick="window.location = '';">Sign up</button>
</form>
<a class="text-white text-center" href="">Forgot password?</a>
</main>
@endsection

View File

@ -0,0 +1,14 @@
@extends("admin.layout.base")
@extends("admin.layout.header")
@section("title")
Home - Logud
@endsection
@section("path")
<a href="" class="text-white">Logud</a> /
@endsection
@section("content")
@endsection

View File

@ -0,0 +1,33 @@
@extends("admin.layout.base")
@extends("admin.layout.header")
@section("title")
Bruger - Vis
@endsection
@section("path")
<a href="" class="text-white">Vis Brugere</a> /
@endsection
@section("content")
<table class="tbl">
<tr>
<th>ID</th>
<th>Fornavn</th>
<th>Efternavn</th>
<th>Email</th>
<th>Tlf nr</th>
<th style="width: 1px;"><img class="w-100" src="{{ asset('/images/icons/pencil.svg') }}" alt="Update"></th>
<th style="width: 1px;"><img class="w-100" src="{{ asset('/images/icons/trashcan.svg') }}" alt="Delete"></th>
</tr>
<tr>
<td>{ID}</td>
<td>{Fornavn}</td>
<td>{Efternavn}</td>
<td>{Email}</td>
<td>{TLF}</td>
<td><a href=""><img class="w-100" src="{{ asset('/images/icons/pencil-dark.svg') }}" alt="Update"></a></td>
<td><a href=""><img class="w-100" src="{{ asset('/images/icons/trashcan-dark.svg') }}" alt="Delete"></a></td>
</tr>
</table>
@endsection

View File

@ -0,0 +1,14 @@
@extends("admin.layout.base")
@extends("admin.layout.header")
@section("title")
Bruger - Opbevar
@endsection
@section("path")
<a href="" class="text-white">Opbevar Brugere</a> /
@endsection
@section("content")
@endsection

View File

@ -3,10 +3,10 @@
{{----}}
{{--Login--}}
{{--@extends("app.user.login")--}}
{{--@extends("app.users.login")--}}
{{--Register--}}
{{--@extends("app.user.register")--}}
{{--@extends("app.users.register")--}}
{{--Vagttelefon--}}
@ -17,19 +17,19 @@
{{----}}
{{--Create User--}}
{{--@extends("admin.user.create")--}}
{{--@extends("admin.users.create")--}}
{{--Read User--}}
{{--@extends("admin.user.read")--}}
{{--@extends("admin.users.show")--}}
{{--Update User--}}
{{--@extends("admin.user.update")--}}
{{--@extends("admin.users.update")--}}
{{--Create Menuplan--}}
{{----}}@extends("admin.menuplan.create")
{{--Read Menuplan--}}
{{--@extends("admin.menuplan.read")--}}
{{--@extends("admin.menuplan.show")--}}
{{--Update Menuplan--}}
{{--@extends("admin.menuplan.update")--}}