1
0
forked from metin2/web

Added blocking, started e-mail validation, fixed locale strings

This commit is contained in:
2023-07-29 11:43:34 +03:00
parent c26d8e4642
commit 7de2a637c4
13 changed files with 237 additions and 139 deletions

View File

@ -0,0 +1,18 @@
<div id="progressTracker">
@php($progressTexts = [
1 => 'Înregistrare',
2 => 'Activează și descarcă',
3 => 'Instalează și joacă-te',
])
@for ($i = 1; $i <= 3; $i++)
<div id="progress{{ $i }}" @class([
'inactive' => $step < $i,
'active' => $step == $i,
'passed' => $step > $i,
])>
<div class="step">{{ $i }}</div>
<p class="progress-text">{{ $progressTexts[$i] }}</p>
</div>
@endfor
</div>