This commit is contained in:
frederikpyt 2020-06-29 10:50:04 +02:00
parent 419672a302
commit 0f93f4ca97
2 changed files with 8 additions and 29 deletions

View File

@ -14,19 +14,19 @@
<form action="{{ action('MenuPlanController@store') }}" method="post"> <form action="{{ action('MenuPlanController@store') }}" method="post">
@csrf @csrf
<label for="monday">Mandag:</label> <label for="monday">Mandag:</label>
<input type="text" name="monday" id="monday" required> <input type="text" name="monday" id="monday" placeholder="Hawaii Pizza" required>
<label for="tuesday">Tirsdag:</label> <label for="tuesday">Tirsdag:</label>
<input type="text" name="tuesday" id="tuesday" required> <input type="text" name="tuesday" id="tuesday" placeholder="Pasta Bolognese" required>
<label for="wednesday">Onsdag:</label> <label for="wednesday">Onsdag:</label>
<input type="text" name="wednesday" id="wednesday" required> <input type="text" name="wednesday" id="wednesday" placeholder="Pandekager" required>
<label for="thursday">Torsdag:</label> <label for="thursday">Torsdag:</label>
<input type="text" name="thursday" id="thursday" required> <input type="text" name="thursday" id="thursday" placeholder="Bøf med løg" required>
<label for="friday">Fredag:</label> <label for="friday">Fredag:</label>
<input type="text" name="friday" id="friday" required> <input type="text" name="friday" id="friday" placeholder="Tarteletter" required>
<label for="saturday">Lørdag:</label> <label for="saturday">Lørdag:</label>
<input type="text" name="saturday" id="saturday" required> <input type="text" name="saturday" id="saturday" placeholder="Boller i karry" required>
<label for="sunday">Søndag:</label> <label for="sunday">Søndag:</label>
<input type="text" name="sunday" id="sunday" required> <input type="text" name="sunday" id="sunday" placeholder="Lasagne" required>
<input type="submit" class="btn btn-dark text-white" value="Opret Menuplan"> <input type="submit" class="btn btn-dark text-white" value="Opret Menuplan">
</form> </form>

View File

@ -14,28 +14,7 @@
<form method="post" action="{{ route("washing-machines.store") }}"> <form method="post" action="{{ route("washing-machines.store") }}">
@csrf @csrf
<label for="name_first">Vaskemaskine Navn:</label> <label for="name_first">Vaskemaskine Navn:</label>
<input type="text" name="name" id="name" max="60" required> <input type="text" name="name" id="name" max="60" placeholder="Vaskemaskine nr. 1" required>
<input type="submit" class="btn btn-dark text-white" value="Opret"> <input type="submit" class="btn btn-dark text-white" value="Opret">
</form> </form>
{{-- <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 @endsection