Added confirmation to row deletion
This commit is contained in:
parent
ed9e6c9d6a
commit
3aee5515b1
|
@ -30,7 +30,7 @@
|
||||||
@csrf
|
@csrf
|
||||||
@method("delete")
|
@method("delete")
|
||||||
|
|
||||||
<button class="w-100 nostyle" type="submit"><img class="w-100 cursor-pointer" src="{{ asset('/images/icons/trashcan-dark.svg') }}" alt="Delete"></button>
|
<button class="w-100 nostyle" onclick="return confirm('Are you sure you want to delete?');" type="submit"><img class="w-100 cursor-pointer" src="{{ asset('/images/icons/trashcan-dark.svg') }}" alt="Delete"></button>
|
||||||
</form>
|
</form>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
@csrf
|
@csrf
|
||||||
@method("delete")
|
@method("delete")
|
||||||
|
|
||||||
<button class="w-100 nostyle" type="submit"><img class="w-100 cursor-pointer" src="{{ asset('/images/icons/trashcan-dark.svg') }}" alt="Delete"></button>
|
<button class="w-100 nostyle" onclick="return confirm('Are you sure you want to delete?');" type="submit"><img class="w-100 cursor-pointer" src="{{ asset('/images/icons/trashcan-dark.svg') }}" alt="Delete"></button>
|
||||||
</form>
|
</form>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
@csrf
|
@csrf
|
||||||
@method("delete")
|
@method("delete")
|
||||||
|
|
||||||
<button class="w-100 nostyle" type="submit"><img class="w-100 cursor-pointer" src="{{ asset('/images/icons/trashcan-dark.svg') }}" alt="Delete"></button>
|
<button onclick="return confirm('Are you sure you want to delete?');" class="w-100 nostyle" type="submit"><img class="w-100 cursor-pointer" src="{{ asset('/images/icons/trashcan-dark.svg') }}" alt="Delete"></button>
|
||||||
</form>
|
</form>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
|
@ -32,7 +32,7 @@
|
||||||
@csrf
|
@csrf
|
||||||
@method("delete")
|
@method("delete")
|
||||||
|
|
||||||
<button class="w-100 nostyle" type="submit"><img class="w-100 cursor-pointer" src="{{ asset('/images/icons/trashcan-dark.svg') }}" alt="Delete"></button>
|
<button onclick="return confirm('Are you sure you want to delete?');" class="w-100 nostyle" type="submit"><img class="w-100 cursor-pointer" src="{{ asset('/images/icons/trashcan-dark.svg') }}" alt="Delete"></button>
|
||||||
</form>
|
</form>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
@csrf
|
@csrf
|
||||||
@method("delete")
|
@method("delete")
|
||||||
|
|
||||||
<button class="w-100 nostyle" type="submit"><img class="w-100 cursor-pointer" src="{{ asset('/images/icons/trashcan-dark.svg') }}" alt="Delete"></button>
|
<button onclick="return confirm('Are you sure you want to delete?');" class="w-100 nostyle" type="submit"><img class="w-100 cursor-pointer" src="{{ asset('/images/icons/trashcan-dark.svg') }}" alt="Delete"></button>
|
||||||
</form>
|
</form>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
|
@ -1,30 +0,0 @@
|
||||||
@extends("admin.layout.base")
|
|
||||||
@extends("admin.layout.header")
|
|
||||||
|
|
||||||
@section("title")
|
|
||||||
Personal - Opret
|
|
||||||
@endsection
|
|
||||||
|
|
||||||
@section("path")
|
|
||||||
<a href="{{ route('staff.create') }}" class="text-white">Opret Personal</a> /
|
|
||||||
@endsection
|
|
||||||
|
|
||||||
@section("content")
|
|
||||||
<h1>Opret Personal:</h1>
|
|
||||||
<form method="post" action="{{ route("staff.store") }}">
|
|
||||||
@csrf
|
|
||||||
<label for="name_first">Fornavn:</label>
|
|
||||||
<input type="text" name="name_first" id="name_first" placeholder="Fornavn" required>
|
|
||||||
<label for="name_last">Efternavn:</label>
|
|
||||||
<input type="text" name="name_last" id="name_last" placeholder="Efternavn" required>
|
|
||||||
<label for="email">Email:</label>
|
|
||||||
<input type="email" name="email" id="email" placeholder="x@y.z" required>
|
|
||||||
<label for="password1">Password:</label>
|
|
||||||
<input type="password" name="password" placeholder="Password" id="password1" required>
|
|
||||||
<label for="password2">Bekræft Password:</label>
|
|
||||||
<input type="password" id="password2" placeholder="Bekræft Password" required>
|
|
||||||
<label for="tel">Telefon nr:</label>
|
|
||||||
<input type="tel" name="phone" id="tel" placeholder="12345678" pattern="[0-9]{2}[0-9]{2}[0-9]{2}[0-9]{2}" required>
|
|
||||||
<input type="submit" class="btn btn-dark text-white" value="Opret">
|
|
||||||
</form>
|
|
||||||
@endsection
|
|
|
@ -1,13 +0,0 @@
|
||||||
@extends("admin.layout.base")
|
|
||||||
@extends("admin.layout.header")
|
|
||||||
|
|
||||||
@section("title")
|
|
||||||
Personal - Fjern
|
|
||||||
@endsection
|
|
||||||
|
|
||||||
@section("path")
|
|
||||||
<a href="{{ route('staff.delete') }}" class="text-white">Fjern Personal</a> /
|
|
||||||
@endsection
|
|
||||||
|
|
||||||
@section("content")
|
|
||||||
@endsection
|
|
|
@ -1,31 +0,0 @@
|
||||||
@extends("admin.layout.base")
|
|
||||||
@extends("admin.layout.header")
|
|
||||||
|
|
||||||
@section("title")
|
|
||||||
Personal - Rediger
|
|
||||||
@endsection
|
|
||||||
|
|
||||||
@section("path")
|
|
||||||
<a href="{{ route('staff.edit', ['staff' => $staff]) }}" class="text-white">Rediger Personal</a> /
|
|
||||||
@endsection
|
|
||||||
|
|
||||||
@section("content")
|
|
||||||
<h1>Rediger Personal:</h1>
|
|
||||||
<form method="post" action="{{ route("staff.update", ['staff' => $staff]) }}">
|
|
||||||
@csrf
|
|
||||||
@method("put")
|
|
||||||
<label for="name_first">Fornavn:</label>
|
|
||||||
<input type="text" name="name_first" id="name_first" value="{{ $staff->name_first }}" required>
|
|
||||||
<label for="name_last">Efternavn:</label>
|
|
||||||
<input type="text" name="name_last" id="name_last" value="{{ $staff->name_last }}" required>
|
|
||||||
<label for="email">Email:</label>
|
|
||||||
<input type="email" name="email" id="email" value="{{ $staff->email }}" required>
|
|
||||||
<label for="password1">Password:</label>
|
|
||||||
<input type="password" name="password" id="password1" value="" required>
|
|
||||||
<label for="password2">Confirm Password:</label>
|
|
||||||
<input type="password" id="password2" value="" required>
|
|
||||||
<label for="tel">Telefon nr:</label>
|
|
||||||
<input type="tel" name="phone" id="tel" value="{{ $staff->phone }}" required>
|
|
||||||
<input type="submit" class="btn btn-dark text-white" value="Rediger">
|
|
||||||
</form>
|
|
||||||
@endsection
|
|
|
@ -1,41 +0,0 @@
|
||||||
@extends("admin.layout.base")
|
|
||||||
@extends("admin.layout.header")
|
|
||||||
|
|
||||||
@section("title")
|
|
||||||
Personal - Vis
|
|
||||||
@endsection
|
|
||||||
|
|
||||||
@section("path")
|
|
||||||
<a href="{{ route('staff.index') }}" class="text-white">Vis Personal</a> /
|
|
||||||
@endsection
|
|
||||||
|
|
||||||
@section("content")
|
|
||||||
<table class="tbl">
|
|
||||||
<tr>
|
|
||||||
<th>Fornavn</th>
|
|
||||||
<th>Efternavn</th>
|
|
||||||
<th>Email</th>
|
|
||||||
<th>Tlf nr</th>
|
|
||||||
<th style="width: 1em;"><img class="w-100" src="{{ asset('/images/icons/pencil.svg') }}" alt="Update"></th>
|
|
||||||
<th style="width: 1em;"><img class="w-100" src="{{ asset('/images/icons/trashcan.svg') }}" alt="Delete"></th>
|
|
||||||
</tr>
|
|
||||||
@foreach($staffs as $staff)
|
|
||||||
<tr>
|
|
||||||
<td>{{ $staff->name_first }}</td>
|
|
||||||
<td>{{ $staff->name_last }}</td>
|
|
||||||
<td>{{ $staff->email }}</td>
|
|
||||||
<td>{{ $staff->phone }}</td>
|
|
||||||
<td><a href="{{ route("staff.edit", [ "staff" => $staff->id ]) }}"><img class="w-100" src="{{ asset('/images/icons/pencil-dark.svg') }}" alt="Update"></a></td>
|
|
||||||
<td><form method="post" action="{{ route("staff.destroy", [ "staff" => $staff->id ]) }}" class="w-100 nostyle">
|
|
||||||
@csrf
|
|
||||||
@method("delete")
|
|
||||||
|
|
||||||
<button class="w-100 nostyle" type="submit"><img class="w-100 cursor-pointer" src="{{ asset('/images/icons/trashcan-dark.svg') }}" alt="Delete"></button>
|
|
||||||
</form>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
@endforeach
|
|
||||||
</table>
|
|
||||||
|
|
||||||
{{ $staffs->links() }}
|
|
||||||
@endsection
|
|
|
@ -1,27 +0,0 @@
|
||||||
@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">
|
|
||||||
@csrf
|
|
||||||
<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
|
|
|
@ -1,14 +0,0 @@
|
||||||
@extends("admin.layout.base")
|
|
||||||
@extends("admin.layout.header")
|
|
||||||
|
|
||||||
@section("title")
|
|
||||||
Home - Logud
|
|
||||||
@endsection
|
|
||||||
|
|
||||||
@section("path")
|
|
||||||
<a href="{{ route('staff.logout') }}" class="text-white">Logud</a> /
|
|
||||||
@endsection
|
|
||||||
|
|
||||||
@section("content")
|
|
||||||
|
|
||||||
@endsection
|
|
|
@ -1,14 +0,0 @@
|
||||||
@extends("admin.layout.base")
|
|
||||||
@extends("admin.layout.header")
|
|
||||||
|
|
||||||
@section("title")
|
|
||||||
Personal - Vis
|
|
||||||
@endsection
|
|
||||||
|
|
||||||
@section("path")
|
|
||||||
<a href="{{ route('staff.index') }}" class="text-white">Vis Personal</a> /
|
|
||||||
@endsection
|
|
||||||
|
|
||||||
@section("content")
|
|
||||||
show.blade.php
|
|
||||||
@endsection
|
|
|
@ -1,14 +0,0 @@
|
||||||
@extends("admin.layout.base")
|
|
||||||
@extends("admin.layout.header")
|
|
||||||
|
|
||||||
@section("title")
|
|
||||||
Personal - Opret
|
|
||||||
@endsection
|
|
||||||
|
|
||||||
@section("path")
|
|
||||||
<a href="{{ route('staff.create') }}" class="text-white">Opret Personal</a> /
|
|
||||||
@endsection
|
|
||||||
|
|
||||||
@section("content")
|
|
||||||
Personal blev (ikke) oprettet.
|
|
||||||
@endsection
|
|
|
@ -1,14 +0,0 @@
|
||||||
@extends("admin.layout.base")
|
|
||||||
@extends("admin.layout.header")
|
|
||||||
|
|
||||||
@section("title")
|
|
||||||
Personal - Rediger
|
|
||||||
@endsection
|
|
||||||
|
|
||||||
@section("path")
|
|
||||||
<a href="{{ route('staff.edit') }}" class="text-white">Rediger Personal</a> /
|
|
||||||
@endsection
|
|
||||||
|
|
||||||
@section("content")
|
|
||||||
Din Personal blev (ikke) redigeret.
|
|
||||||
@endsection
|
|
|
@ -40,7 +40,7 @@
|
||||||
@csrf
|
@csrf
|
||||||
@method("delete")
|
@method("delete")
|
||||||
|
|
||||||
<button class="w-100 nostyle" type="submit"><img class="w-100 cursor-pointer" src="{{ asset('/images/icons/trashcan-dark.svg') }}" alt="Delete"></button>
|
<button class="w-100 nostyle" onclick="return confirm('Are you sure you want to delete?');" type="submit"><img class="w-100 cursor-pointer" src="{{ asset('/images/icons/trashcan-dark.svg') }}" alt="Delete"></button>
|
||||||
</form>
|
</form>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
|
@ -20,7 +20,13 @@
|
||||||
<tr>
|
<tr>
|
||||||
<td>{Navn}</td>
|
<td>{Navn}</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/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>
|
<td><form method="post" action="{{ route("washing-machines.destroy", [ "machine" => $machine ]) }}" class="w-100 nostyle">
|
||||||
|
@csrf
|
||||||
|
@method("delete")
|
||||||
|
|
||||||
|
<button class="w-100 nostyle" onclick="return confirm('Are you sure you want to delete?');" type="submit"><img class="w-100 cursor-pointer" src="{{ asset('/images/icons/trashcan-dark.svg') }}" alt="Delete"></button>
|
||||||
|
</form>
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
@endforeach
|
@endforeach
|
||||||
</table>
|
</table>
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
@csrf
|
@csrf
|
||||||
@method("delete")
|
@method("delete")
|
||||||
|
|
||||||
<button class="w-100 nostyle" type="submit"><img class="w-100 cursor-pointer" src="{{ asset('/images/icons/trashcan-dark.svg') }}" alt="Delete"></button>
|
<button class="w-100 nostyle" onclick="return confirm('Are you sure you want to delete?');" type="submit"><img class="w-100 cursor-pointer" src="{{ asset('/images/icons/trashcan-dark.svg') }}" alt="Delete"></button>
|
||||||
</form>
|
</form>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
Loading…
Reference in New Issue