2022-08-01 14:28:07 -05:00

17 lines
421 B
PHP

<?= $this->extend('templates/base') ?>
<!-- title -->
<?= $this->section('title') ?>Prestador<?= $this->endSection() ?>
<!-- content -->
<?= $this->section('content') ?>
<h1>Tus datos han sido registrados correctamente</h1>
<h5>Una vez que sean revisados, podrás acceder a tu cuenta.</h5>
<h6>
(Aún puedes
<a href="<?= route_to('registro') ?>">actualizar tus datos</a>
)
</h6>
<?= $this->endSection() ?>