{% extends 'security/base.html.twig' %} {% block estilos %} html, body { height: 100%; } html { display: table; margin: auto; } body { display: table-cell; vertical-align: middle; } body { background: #004c82; } .caja{ width: 800px; } .card .card-title { font-size: 18px; } .input-field { position: relative; margin-top: 0.5rem; margin-bottom: 0.5rem; } @font-face { font-family: 'icon-cdlmag'; src: url('{{ asset('icons/fontello/icon-cdlmag.eot') }}'); src: url('{{ asset('icons/fontello/icon-cdlmag.eot') }}') format('embedded-opentype'), url('{{ asset('icons/fontello/icon-cdlmag.woff') }}') format('woff'), url('{{ asset('icons/fontello/icon-cdlmag.ttf') }}') format('truetype'), url('{{ asset('icons/fontello/icon-cdlmag.svg') }}') format('svg'); font-weight: normal; font-style: normal; } .cdlmag-icon { font-family: "icon-cdlmag"; font-weight: normal; font-style: normal; font-size: 24px; line-height: 1; letter-spacing: normal; text-transform: none; display: inline-block; white-space: nowrap; word-wrap: normal; direction: ltr; -webkit-font-feature-settings: 'liga'; -webkit-font-smoothing: antialiased; } @media (max-width: 600px) { .caja { width:auto; } } {% endblock %} {% block js_document_ready %} // Inicializo dataPicker inicializarDatePicker( null, [1960, {{ "now"|date("Y") }}], new Date(), false ); // Inicializo selects y modal $("select").formSelect(); var bt_descarga = $('#{{ form.descargarR.vars.id }}'); var bt_descarga_text; bt_descarga.click(function (e) { $(this).prop('disabled', true); {# bt_descarga.prepend('
'); #} bt_descarga_text = bt_descarga.html(); bt_descarga.html('
'); $.ajax({ url : '{{ path('aspirante_descarga_reglamento') }}', type: 'POST', {# type: $form.attr('method'), #} {# data : data, #} success: function(html) { descargarReglamento(); $('#{{ form.tick.vars.id }}').val($(html).find('#{{ form.tick.vars.id }}').val()); $('#bk_descarga').html($(html).find('#bk_descarga')); configurarRegistrarse(); } }) .always(function() { bt_descarga.html(bt_descarga_text); bt_descarga.prop('disabled', false); }); {# Deshabilito el submit #} return false; }); {% endblock %} {% block javascripts_base %} function descargarReglamento() { var url = '{{ asset('Reglamento_RIA_PODA.pdf', 'files') }}'; fileName = 'Reglamento_RIA_PODA.pdf'; downloadFile(url, fileName); } /** * Download a file without browser popup warning * @param {string} url The url of the file to download * @param {string} filename Set a new filename for the downloaded file (optional) */ const downloadFile = (url, filename = '') => { if (filename.length === 0) filename = url.split('/').pop(); const req = new XMLHttpRequest(); req.open('GET', url, true); req.responseType = 'blob'; req.onload = function () { const blob = new Blob([req.response], { type: 'application/pdf', }); const isIE = false || !!document.documentMode; if (isIE) { window.navigator.msSaveBlob(blob, filename); } else { const windowUrl = window.URL || window.webkitURL; const href = windowUrl.createObjectURL(blob); const a = document.createElement('a'); a.setAttribute('download', filename); a.setAttribute('href', href); document.body.appendChild(a); a.click(); document.body.removeChild(a); } }; req.send(); }; {% endblock %} {% form_theme form _self %} {% block form_row -%} {{- form_widget(form) -}} {{- form_label(form) -}} {{- form_help(form) -}} {{- form_errors(form) -}} {%- endblock form_row %} {% block contenido %}
PORTAL DIGITAL DE ASPIRANTES - PoDA
Registro de Usuario
{{ form_start(form, {'attr': {'novalidate':'novalidate'}}) }}
{{ form_row(form.apellidos) }}
{{ form_row(form.nombres) }}
{{ form_row(form.genero) }}
{{ form_row(form.dni.first) }}
{{ form_row(form.dni.second) }}
{{ form_row(form.dni_tramite) }} Ayuda
{{ form_widget(form.urldni) }} {{ form_label(form.urldni) }} {{ form_help(form.urldni) }}
Información de Matrícula
portrait {{ form_row(form.matricula.colegio) }}
portrait {{ form_row(form.matricula.tomo) }}
portrait {{ form_row(form.matricula.folio) }}
event {{ form_row(form.matricula.fechaMatriculacion) }}
{{ form_widget(form.matricula.urlConstanciaMatricula) }} {{ form_label(form.matricula.urlConstanciaMatricula) }} {{ form_help(form.matricula.urlConstanciaMatricula) }}
mail {{ form_row(form.email_personal.first) }}
mail {{ form_row(form.email_personal.second) }}
lock {{ form_row(form.password.first) }}
lock {{ form_row(form.password.second) }}

Para continuar deberá descargar el Reglamento aplicable para el Registro Integral de Antecedentes de Aspirantes a la Magistratura y al Ministerio Público (RIA) y el Portal Digital de Aspirantes (PODA)


{{ form_widget(form.descargarR, {'attr': {'class': "btn waves-effect waves-light identidad-color col s12 m8 offset-m2"}}) }}
{% if registroAspirante.tick %}

{% if not form.aceptoTerminos.vars.valid %}

{{ form.aceptoTerminos.vars.errors }}
{% endif %}

{{ form_widget(form.registrarse, {'attr': {'class': "btn waves-effect waves-light identidad-color col s12 boton_ingresar"}}) }}
{% endif %}
{{ form_end(form) }}
AYUDA NÚMERO DE TRÁMITE close
{% endblock %}