17 lines
421 B
PHP
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() ?>
|