Archived
1
0
Fork 0

cleanup view

This commit is contained in:
Henrik Hautakoski 2021-03-21 08:27:24 +01:00
parent 865a90c8d0
commit f26da7567a
3 changed files with 11 additions and 10 deletions

View file

@ -1,10 +1,10 @@
@extends('layouts.default')
@section('content')
<p class="mb-5">
<p>
Är ordet <strong>{{ $word }}</strong> en <strong>{{ $guess == 'sex' ? 'sex-ställning' : 'yoga-övning' }}</strong>?
</p>
<h2 class="{{ $correct ? 'text-success' : 'text-danger' }}">{{ $correct ? 'Ja!' : 'Nej!' }}</h2>
<a href="{{ route("word", ['uuid' => $next ]) }}" class="mt-5 btn btn-lg btn-info">Nästa ord</a>
<h1 class="mb-5 {{ $correct ? 'text-success' : 'text-danger' }}"><strong>{{ $correct ? 'Ja!' : 'Nej!' }}</strong></h2>
<a href="{{ route("word", ['uuid' => $next ]) }}" class="btn btn-lg btn-info">Nästa ord</a>
@endsection