This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
cut-publik-theme/templates/registration/registration_steps.html

21 lines
694 B
HTML

<div class="registration-steps">
<ul>
<li {% if active_step == 'creation' %}class="current"{% endif %}>
<span class="marker">1</span>
<span class="label">Création</span>
</li>
<li {% if active_step == 'activation' %}class="current"{% endif %}>
<span class="marker">2</span>
<span class="label">Validation</span>
</li>
<li {% if active_step == 'completion' %}class="current"{% endif %}>
<span class="marker">3</span>
<span class="label">Finalisation</span>
</li>
<li {% if active_step == 'share' %}class="current"{% endif %}>
<span class="marker">4</span>
<span class="label">Partage</span>
</li>
</ul>
</div>