Merge branch 'master' of https://github.com/sebathefox/skolehjem-webapp
This commit is contained in:
commit
bad88a5e51
|
@ -341,6 +341,7 @@ a {
|
||||||
|
|
||||||
.links {
|
.links {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
align-self: center;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
bottom: 8px;
|
bottom: 8px;
|
||||||
height: 2rem;
|
height: 2rem;
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
<h3 class="sde-blue bold text-center mb-0">{{$userevent->name}}</h3>
|
<h3 class="sde-blue bold text-center mb-0">{{$userevent->name}}</h3>
|
||||||
<p class="text-center mt-0">{{$userevent->date}}</p>
|
<p class="text-center mt-0">{{$userevent->date}}</p>
|
||||||
<p class="text-center">{{$userevent->description}}</p>
|
<p class="text-center">{{$userevent->description}}</p>
|
||||||
<button type="submit" class="btn text-center btn-sde-blue" id="tilmeld">Afmeld</button>
|
<button type="submit" class="btn text-center btn-sde-blue" onclick="return confirm('Are you sure you want to remove this reservation?');">Afmeld</button>
|
||||||
</form>
|
</form>
|
||||||
@endforeach
|
@endforeach
|
||||||
@else
|
@else
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
@section("content")
|
@section("content")
|
||||||
<main>
|
<main>
|
||||||
<h1 class="text-center sde-blue mt-0">Konto</h1>
|
<h1 class="text-center sde-blue mt-0">Konto</h1>
|
||||||
<form method="post" action="{{ route("users.update", ['user' => Auth::user()]) }}">
|
<form method="post" action="{{ route("users.update", ['user' => Auth::user()]) }}">
|
||||||
@csrf
|
@csrf
|
||||||
@method("put")
|
@method("put")
|
||||||
<span>Navn:</span>
|
<span>Navn:</span>
|
||||||
|
|
|
@ -5,7 +5,9 @@
|
||||||
<div class="d-flex col block-container mt-2">
|
<div class="d-flex col block-container mt-2">
|
||||||
<a href="{{ route('menu-plans.index') }}" class="block text-center mb-1">Menuplan</a>
|
<a href="{{ route('menu-plans.index') }}" class="block text-center mb-1">Menuplan</a>
|
||||||
<a href="{{ route('events.index') }}" class="block text-center mb-1">Aktiviteter</a>
|
<a href="{{ route('events.index') }}" class="block text-center mb-1">Aktiviteter</a>
|
||||||
<a href="{{ route('washing-reservations.index') }}" class="block text-center mb-1">Vaskemaskine Reservationer</a>
|
<a href="{{ route('washing-reservations.index') }}" class="block text-center mb-1">Reservationer</a>
|
||||||
|
<a href="{{ route('contacts.index') }}" class="block text-center mb-1">Kontoret</a>
|
||||||
|
<a href="{{ route('phones.index') }}" class="block text-center mb-1">Vagttelefon</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="links row">
|
<div class="links row">
|
||||||
<a href="https://www.facebook.com" target="_blank" class="link">
|
<a href="https://www.facebook.com" target="_blank" class="link">
|
||||||
|
|
Loading…
Reference in New Issue