cleanup view
This commit is contained in:
parent
865a90c8d0
commit
f26da7567a
3 changed files with 11 additions and 10 deletions
|
|
@ -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
|
||||
|
|
|
|||
Reference in a new issue