Files
iro2-back-lecture/resources/views/thanks.blade.php

15 lines
759 B
PHP

@extends('layouts.app')
@section('content')
<div class="text-center">
<div class="bg-green-100 text-green-800 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
<svg xmlns="http://www.w3.org/2000/svg" class="h-8 w-8" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
</div>
<h1 class="text-2xl font-bold text-gray-800 mb-2">Спасибо за оценку!</h1>
<p class="text-gray-600 mb-6">Ваш голос учтён.</p>
<a href="/" class="text-blue-600 hover:underline">&larr; Вернуться на главную</a>
</div>
@endsection