templates/app/online_registration/success.html.twig line 1
{% extends 'front.html.twig' %} {% block title %}Hello
OnlineRegistrationController! {% endblock %} {% block body %}
<div id="preloader" class="text-center">
<div id="status">
<div class="logo">
<a href="javascript:void(0);" class="d-block auth-logo">
<h1 style="font-weight: 700; text-align: center" class="mt-14">
<span style="color: #950853"></span>Clever Nursery
</h1>
</a>
</div>
<div class="sk-chase mt-4">
<div class="sk-chase-dot"></div>
<div class="sk-chase-dot"></div>
<div class="sk-chase-dot"></div>
<div class="sk-chase-dot"></div>
<div class="sk-chase-dot"></div>
<div class="sk-chase-dot"></div>
</div>
</div>
</div>
<section class="user-pages vh-100 d-flex align-items-center">
<div class="bg-overlay bg-overlay-white"></div>
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-5 col-md-8">
<div class="text-center">
<a href="javascript:void(0);" class="d-block auth-logo">
<h1 style="font-weight: 700; text-align: center" class="mt-14">
<span style="color: #950853"></span>Clever Nursery
</h1>
</a>
</div>
<div
class="login-page bg-white shadow-lg rounded p-4 mt-4 position-relative"
>
<div class="text-center">
<h5 class="mb-4 pb-2">{% trans %} Success {% endtrans %}</h5>
<a
class="btn btn-info w-100"
href="{{
path('front_online_registration', { company: company.id })
}}"
>
{% trans %} Back to Form {% endtrans %}
</a>
</div>
<form class="login-form"></form>
</div>
</div>
</div>
</div>
</section>
{% endblock %}