17 lines
464 B
PHP

<?= $this->extend('templates/base') ?>
<!-- title -->
<?= $this->section('title') ?>Prestador<?= $this->endSection() ?>
<!-- content -->
<?= $this->section('content') ?>
<h1>Tu solicitud no ha sido aprobada</h1>
<h5>Revisa tu correo electrónico para consultar el motivo por el que esta fue rechazada.</h5>
<h6>
Puedes
<a href="<?= route_to('registro') ?>">corregir tus datos</a>
y enviarlos nuevamente a revisión.
</h6>
<?= $this->endSection() ?>