agrega conference fees, ordena alfabeticamente las conferencias, sesiones y demas, crea la sección de comités
This commit is contained in:
parent
06b8f687bf
commit
6825249359
130
data/comites.json
Normal file
130
data/comites.json
Normal file
@ -0,0 +1,130 @@
|
||||
[
|
||||
{
|
||||
"titulo":"Comité Científico",
|
||||
"integrantes":[
|
||||
{
|
||||
"nombre":"Andrés Navas",
|
||||
"afiliacion":"USACH,UNAM",
|
||||
"rol":"Presidente"
|
||||
},
|
||||
{
|
||||
"nombre": "María Julia Redondo",
|
||||
"afiliacion": "Universidad Nacional del Sur",
|
||||
"rol": ""
|
||||
},
|
||||
{
|
||||
"nombre": "Liliana Forzani",
|
||||
"afiliacion": "UNL",
|
||||
"rol": ""
|
||||
},
|
||||
{
|
||||
"nombre": "Carolina Araujo",
|
||||
"afiliacion": "IMPA",
|
||||
"rol": ""
|
||||
},
|
||||
{
|
||||
"nombre": "Felipe Linares",
|
||||
"afiliacion": "IMPA",
|
||||
"rol": ""
|
||||
},
|
||||
{
|
||||
"nombre": "Nicolas Libedinsky",
|
||||
"afiliacion": "Universidad de Chile",
|
||||
"rol": ""
|
||||
},
|
||||
{
|
||||
"nombre": "Alexander Berenstein",
|
||||
"afiliacion": "Universidad de los Andes",
|
||||
"rol": ""
|
||||
},
|
||||
{
|
||||
"nombre": "Angélica Osorno",
|
||||
"afiliacion": "Reed College, USA",
|
||||
"rol": ""
|
||||
},
|
||||
{
|
||||
"nombre": "Maria Emilia Caballero",
|
||||
"afiliacion": "UNAM",
|
||||
"rol": ""
|
||||
},
|
||||
{
|
||||
"nombre": "Alejandro Femat",
|
||||
"afiliacion": "IPICYT",
|
||||
"rol": ""
|
||||
},
|
||||
{
|
||||
"nombre": "Ricardo Fraiman",
|
||||
"afiliacion": "Universidad de l República",
|
||||
"rol": ""
|
||||
},
|
||||
{
|
||||
"nombre": "Enrique Pujals",
|
||||
"afiliacion": "CUNY, USA",
|
||||
"rol": ""
|
||||
},
|
||||
{
|
||||
"nombre": "Olga Gil Medrano",
|
||||
"afiliacion": "UV, España",
|
||||
"rol": ""
|
||||
},
|
||||
{
|
||||
"nombre": "Eva Miranda",
|
||||
"afiliacion": "UPC, España",
|
||||
"rol": ""
|
||||
},
|
||||
{
|
||||
"nombre": "Wilfredo Urbina Romero",
|
||||
"afiliacion": "Roosvelt U., USA",
|
||||
"rol": ""
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"titulo":"Comité Organizador",
|
||||
"integrantes":[
|
||||
{
|
||||
"nombre": "Diego Armentano",
|
||||
"afiliacion": "Universidad de la República",
|
||||
"rol": "",
|
||||
"web":"http://www.cmat.edu.uy/~diego"
|
||||
},
|
||||
{
|
||||
"nombre": "Paola Bermolen",
|
||||
"afiliacion": "Universidad de la República",
|
||||
"rol": "",
|
||||
"web":"https://www.fing.edu.uy/imerl/institucional/docentes/paola"
|
||||
},
|
||||
{
|
||||
"nombre": "Eugenia Ellis",
|
||||
"afiliacion": "Universidad de la República",
|
||||
"rol": "",
|
||||
"web": "https://www.fing.edu.uy/~eellis"
|
||||
},
|
||||
{
|
||||
"nombre": "Marcelo Fiori",
|
||||
"afiliacion": "Universidad de la República",
|
||||
"rol": "",
|
||||
"web": "https://www.fing.edu.uy/~mfiori"
|
||||
},
|
||||
{
|
||||
"nombre": "José Rafael León",
|
||||
"afiliacion": "Universidad de la República",
|
||||
"rol": "",
|
||||
"web": ""
|
||||
},
|
||||
{
|
||||
"nombre": "Roberto Marakrián",
|
||||
"afiliacion": "Universidad de la República",
|
||||
"rol": "Coordinador",
|
||||
"web": "https://www.fing.edu.uy/imerl/grupos/ssd/integrantes/gente/Roberto.htm"
|
||||
},
|
||||
{
|
||||
"nombre": "Gonzalo Tornaría",
|
||||
"afiliacion": "Universidad de la República",
|
||||
"rol": "",
|
||||
"web": "http://www.cmat.edu.uy/~tornaria"
|
||||
}
|
||||
|
||||
]
|
||||
}
|
||||
]
|
BIN
db/clam2020.db
BIN
db/clam2020.db
Binary file not shown.
BIN
public/img/english-flag.png
Normal file
BIN
public/img/english-flag.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 26 KiB |
@ -8,11 +8,11 @@ function routeMenu(){
|
||||
case "/programa":
|
||||
$("li#program").addClass("active");
|
||||
break;
|
||||
/*case "/committees":
|
||||
case "/committees":
|
||||
$("li#committees").addClass("active");
|
||||
break;*/
|
||||
case "/charlas":
|
||||
$("li#charlas").addClass("active");
|
||||
break;
|
||||
case "/conferencias":
|
||||
$("li#conferencias").addClass("active");
|
||||
break;
|
||||
case "/sesiones":
|
||||
$("li#sesiones").addClass("active");
|
||||
|
@ -40,9 +40,12 @@ $app->get('/participantes', function (Request $request, Response $response, arra
|
||||
});
|
||||
|
||||
|
||||
$app->get('/committees', function (Request $request, Response $response, array $args) {
|
||||
$app->get('/comites', function (Request $request, Response $response, array $args) {
|
||||
$this->logger->info("GDDWorkshop '/committess' route");
|
||||
return $this->renderer->render($response, 'committess.html', $args);
|
||||
$strcomites = file_get_contents(__DIR__."/../data/comites.json");
|
||||
$comites = json_decode($strcomites,true);
|
||||
//echo "<pre>".var_export($comites,true)."</pre>";
|
||||
return $this->renderer->render($response, 'committess.html',['comites' => $comites]);
|
||||
});
|
||||
|
||||
$app->get('/informacion-practica', function (Request $request, Response $response, array $args) {
|
||||
@ -50,19 +53,39 @@ $app->get('/informacion-practica', function (Request $request, Response $respons
|
||||
return $this->renderer->render($response, 'practicalinfo.html', $args);
|
||||
});
|
||||
|
||||
$app->get('/charlas', function (Request $request, Response $response, array $args) {
|
||||
$app->get('/conferencias', function (Request $request, Response $response, array $args) {
|
||||
$this->logger->info("GDDWorkshop '/charlas' route");
|
||||
$strcharlas = file_get_contents(__DIR__."/../data/charlas.json");
|
||||
$strcharlas = file_get_contents(__DIR__."/../data/conferencias.json");
|
||||
$charlas = json_decode($strcharlas,true);
|
||||
return $this->renderer->render($response, 'charlas.html',
|
||||
/*function cmp($a, $b){
|
||||
$aArray = explode(" ", $a.no);
|
||||
$bArray = explode(" ", $b);
|
||||
$aApellido = $a
|
||||
if($a == $b){
|
||||
return 0;
|
||||
}
|
||||
return ($a<$b)?-1:1;
|
||||
} */
|
||||
return $this->renderer->render($response, 'conferencias.html',
|
||||
['charlas' => $charlas]);
|
||||
});
|
||||
|
||||
$app->get('/sesiones', function (Request $request, Response $response, array $args) {
|
||||
$this->logger->info("GDDWorkshop '/sesiones' route");
|
||||
$strsesiones = file_get_contents(__DIR__."/../data/sesiones.json");
|
||||
$sesiones = json_decode($strsesiones,true);
|
||||
//echo "<pre>".var_export(array_chunk($sesiones,10,true),true)."</pre>";
|
||||
$sesiones = json_decode($strsesiones,true);
|
||||
|
||||
function removeAccents($string) {
|
||||
return strtolower(trim(preg_replace('~[^0-9a-z]+~i', '-', preg_replace('~&([a-z]{1,2})(acute|cedil|circ|grave|lig|orn|ring|slash|th|tilde|uml);~i', '$1', htmlentities($string, ENT_QUOTES, 'UTF-8'))), ' '));
|
||||
}
|
||||
|
||||
usort($sesiones,function($s1,$s2){
|
||||
$a = removeAccents($s1['titulo']);
|
||||
$b = removeAccents($s2['titulo']);
|
||||
return strcasecmp($a,$b)<0?-1:1;
|
||||
});
|
||||
|
||||
//echo "<pre>".var_export($sesiones,true)."</pre>";
|
||||
return $this->renderer->render($response, 'sesiones.html', ["sesiones"=>array_chunk($sesiones,8,true)]);
|
||||
});
|
||||
|
||||
|
@ -4,44 +4,23 @@
|
||||
<div class="row">
|
||||
<div class="col-xs-12">
|
||||
|
||||
<h1><strong>Committees</strong></h1>
|
||||
<h2>Scientific Committee</h2>
|
||||
<ul class="comite">
|
||||
<li><a href="http://www.math.lsa.umich.edu/~canary/" target="_blank">Dick Canary - University of Michigan</a></li>
|
||||
<li><a href="https://www.math.u-psud.fr/~crovisie/" target="_blank">Sylvain Crovisier - Université Paris-Sud</a></li>
|
||||
<li><a href="https://www.ihes.fr/en/professeur/3403-2/" target="_blank">Fanny Kassel - IHES Université Paris-Saclay</a></li>
|
||||
<li><a href="http://cayley.kr/wiki/Sang-hyun_Kim" target="_blank">Sang-hyun Kim - Seoul National University</a></li>
|
||||
<li><a href="https://www.dpmms.cam.ac.uk/~gpp24/" target="_blank">Gabriel Paternain - University of Cambridge</a></li>
|
||||
<li><a href="http://w3.impa.br/~enrique/" target="_blank">Enrique Pujals - Instituto de Matematica Pura e Aplicada (IMPA)</a></li>
|
||||
<li><a href="http://www.cmat.edu.uy/~rpotrie/" target="_blank">Rafael Potrie - Universidad de la República</a></li>
|
||||
</ul>
|
||||
|
||||
<h2>Organizing Committee</h2>
|
||||
<ul class="comite">
|
||||
<li>
|
||||
<a href="http://www.cmat.edu.uy/docentes/alonso-juan" target="_blank">
|
||||
Juan Alonso - Universidad de la República
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="http://abadejo.fing.edu.uy/ssd/integrantes/gente/Joaquin.htm" target="_blank">
|
||||
Joaquín Brum - Universidad de la República
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://webusers.imj-prg.fr/~andres.sambarino/" target="_blank">
|
||||
Andrés Sambarino - Université Paris VI
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://www.fing.edu.uy/imerl/grupos/ssd/integrantes/gente/Roberto.htm" target="_blank">
|
||||
Roberto Markarián - Universidad de la República
|
||||
</a>
|
||||
</li>
|
||||
</li>
|
||||
<li>Adriana Da Luz - Universidad de la República</li>
|
||||
</ul>
|
||||
|
||||
<h1><strong>Comités</strong></h1>
|
||||
<div style="height:20px;"></div>
|
||||
{% for comite in comites %}
|
||||
<h2>{{comite.titulo}}</h2>
|
||||
<ul class="comite">
|
||||
{% for person in comite.integrantes %}
|
||||
<li>
|
||||
{% if person.web %}<a href="{{person.web}}" target="_blank" rel="noopener noreferrer">{% endif %}
|
||||
{{person.nombre}} ( {{person.afiliacion}} )
|
||||
{{ person.web ? '</a>':'' }}
|
||||
</li>
|
||||
{% endfor %}
|
||||
|
||||
|
||||
</ul>
|
||||
<hr class="separador" style="margin-top:20px;">
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
@ -15,7 +15,7 @@
|
||||
{% for lista in charlas %}
|
||||
{% set categoria = lista.categoria %}
|
||||
<section class="{{ loop.index == 1 ? 'in active' }} tab-pane fade" id="{{categoria}}">
|
||||
{% for charla in lista.charlas %}
|
||||
{% for charla in lista.charlas|sort((a,b)=>a.speaker.nombre|split(' ')[1]<=>b.speaker.nombre|split(' ')[1]) %}
|
||||
<div class="media">
|
||||
<div class="media-left media-middle">
|
||||
|
@ -35,8 +35,9 @@
|
||||
<ul class="nav navbar-nav" id="menu">
|
||||
|
||||
<li id="home"><a href="/"><i class="glyphicon glyphicon-home"></i></a></li>
|
||||
<li id="comites"><a href="comites">Comités</a></li>
|
||||
<li id="program"><a href="programa">Programa</a></li>
|
||||
<li id="charlas"><a href="charlas">Charlas</a></li>
|
||||
<li id="conferencias"><a href="conferencias">Conferencias</a></li>
|
||||
<li id="sesiones"><a href="sesiones">Sesiones</a></li>
|
||||
<li id="registration"><a href="registrarse">Registro</a></li>
|
||||
<li id="participants"><a href="participantes">Participantes</a></li>
|
||||
|
@ -15,7 +15,13 @@
|
||||
|
||||
|
||||
<p>
|
||||
La sexta versión del CLAM se llevará a cabo en Montevideo, Uruguay, entre el 20 y 24 de julio de 2020.
|
||||
<a style="color:#00C5EE;font-size:1.3em;"
|
||||
href="http://www.umalca.org/eventos/clam/"
|
||||
target="_blank"
|
||||
rel="noreferrer noopener">
|
||||
La sexta versión del CLAM</a>
|
||||
se llevará a cabo en Montevideo,
|
||||
Uruguay, <br/>entre el 20 y 24 de julio de 2020.
|
||||
<!--Unión Matemática de América Latina y el Caribe (UMALCA),
|
||||
la Sociedad Colombiana de Matemáticas (SCM) y la Universidad del Norte.
|
||||
Este evento reúne a la comunidad matemática de América Latina y el Caribe, y se presentan y
|
||||
@ -26,117 +32,5 @@
|
||||
</p>
|
||||
|
||||
|
||||
<h2>Comité Organizador</h2>
|
||||
<ul class="comite">
|
||||
<li>
|
||||
<a href="http://www.cmat.edu.uy/~diego" target="_blank">
|
||||
Diego Armentano - Universidad de la República
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://www.fing.edu.uy/imerl/institucional/docentes/paola" target="_blank">
|
||||
Paola Bermolen - Universidad de la República
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://www.fing.edu.uy/~eellis/" target="_blank">
|
||||
Eugenia Ellis - Universidad de la República
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://www.fing.edu.uy/~mfiori/" target="_blank">
|
||||
Marcelo Fiori - Universidad de la República
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<!--<a href="http://www.cmat.edu.uy/docentes/sambarino-martin" target="_blank">-->
|
||||
José Rafael León - Universidad de la República
|
||||
</a>
|
||||
</li>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://www.fing.edu.uy/imerl/grupos/ssd/integrantes/gente/Roberto.htm" target="_blank">
|
||||
Roberto Markarián - <b>(Coordinador)</b> - Universidad de la República
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="http://www.cmat.edu.uy/~tornaria" target="_blank">
|
||||
Gonzalo Tornaria - Universidad de la República
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
</ul>
|
||||
<hr class="separador">
|
||||
<!--<p>
|
||||
During the conference we will be holding a memorial recognition to Ricardo Mañé
|
||||
(1948-1995), a top Uruguayan (and Brazilian) mathematician who worked on Dynamical
|
||||
Systems, and who in 2018 would have been 70 years old.
|
||||
</p>
|
||||
|
||||
<div class="thumbnail">
|
||||
<div class="row">
|
||||
|
||||
|
||||
<div class="col-xs-12 col-sm-6">
|
||||
<a href="https://en.wikipedia.org/wiki/Ricardo_Ma%C3%B1%C3%A9" target="_blank">
|
||||
<img class="img-responsive" src="img/rmane.jpg" alt="Ricardo Mañé"/>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="caption wrap">
|
||||
<p>Ricardo Mañé was born in January, 1948, in Montevideo, Uruguay.
|
||||
He entered the University of the Republic of Uruguay in 1967.
|
||||
In 1969 he became an assistant lecturer in the department of
|
||||
mathematics, where, under the guidance of J. Lewowicz he found
|
||||
his vocation for mathematics and specially for dynamical systems.
|
||||
Through him he got in contact in 1971 with J. Palis, who was then
|
||||
starting a lively research group in this field at the Institute
|
||||
for Pure and Applied Mathematics (IMPA) in Rio de Janeiro.
|
||||
He encouraged Mañé to pursue his studies at IMPA, which he did,
|
||||
obtaining his PhD in 1973, having Palis as thesis advisor.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-xs-12">
|
||||
<div class="caption">
|
||||
<p>
|
||||
Since he became an assistant professor at IMPA, in 1973, all the
|
||||
academic career of Mañé was developed at this admirable Institute,
|
||||
where he has been thesis adviser of eleven doctorate students
|
||||
C. Doering, A. Araújo, R. Ruggiero, M. Craizer, G. Contreras,
|
||||
M. Paternain, F. Carvalho, A. Rovella, J. Delgado, R. Iturriaga and
|
||||
H. Enrich. The topics of their theses included persistently transitive
|
||||
flows, Lorenz like attractors, existence of hyperbolic attractors for
|
||||
diffeomorphisms of surfaces, the dynamics of the inner functions and
|
||||
the variational ergodic theory of Lagrangian flows.
|
||||
</p>
|
||||
<p>
|
||||
Mañé was invited to speak twice in the section of Ordinary
|
||||
Differential Equations and Dynamical Systems of the International
|
||||
Congress of Mathematicians, in 1983 at Warsaw and in 1994 at Zürich.
|
||||
He was also a speaker at the Colloquium organized by the Société
|
||||
Mathématique de France, celebrating R. Thom's 65th anniversary.
|
||||
In 1994, he became a member of the Brazilian Academy of Sciences
|
||||
and was awarded the Third World Academy of Sciences Prize for Mathematics.
|
||||
</p>
|
||||
<p>
|
||||
A bold contribution and a masterpiece of Mañés work is the solution of the stability conjecture.
|
||||
</p>
|
||||
<p>
|
||||
Mañé passed away in Montevideo, 1995.
|
||||
</p>
|
||||
<p>
|
||||
<a href="http://emis.impa.br/EMIS/journals/em/docs/boletim/vol282/v28-2-a1-1997.pdf" target="_blank">
|
||||
See Mañé, Ricardo On Ricardo Mañé. Edited by Jacob Palis. Bol.
|
||||
Soc. Brasil. Mat. (N.S.) 28 (1997), no. 2, i–iii. 01A70
|
||||
</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>-->
|
||||
|
||||
{% endblock %}
|
||||
|
@ -3,8 +3,28 @@
|
||||
{% block content %}
|
||||
<script src="js/data.js"></script>
|
||||
<script src="js/registerform.js"></script>
|
||||
<style>
|
||||
.table{
|
||||
font-size:1.1em;
|
||||
|
||||
}
|
||||
.table th:nth-child(2){
|
||||
text-align: right;
|
||||
}
|
||||
.table th:nth-child(3){
|
||||
text-align: right;
|
||||
}
|
||||
.table tr td:nth-child(2){
|
||||
text-align: right;
|
||||
}
|
||||
.table tr td:nth-child(3){
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
<h1><strong>Registration</strong></h1>
|
||||
|
||||
|
||||
</style>
|
||||
|
||||
|
||||
{% if closed %}
|
||||
{% set disabled="disabled" %}
|
||||
@ -13,10 +33,83 @@
|
||||
For any further questions, please contact: <a class="alert-link" href="mailto:ggdworkshop@cmat.edu.uy">ggdworkshop@cmat.edu.uy</a>
|
||||
</div>
|
||||
{% endif %}
|
||||
<div class="alert alert-info">
|
||||
<i class="glyphicon glyphicon-info-sign"></i> <strong>To be announced</strong><br/>
|
||||
<div class="row">
|
||||
<div class="col-xs-12">
|
||||
<h1><strong>Inscripción</strong></h1>
|
||||
</div>
|
||||
<div class="col-xs-12">
|
||||
<h2>Tarifa de inscripción:</h2>
|
||||
<p style="font-size:16px; padding-bottom:5px;">Existe una tarifa de inscripción de USD 100, la cual incluye café,
|
||||
cena y asistencia internacional, además de todas las actividades de la conferencia.
|
||||
</p>
|
||||
<p style="font-size:16px;padding-bottom:5px;">
|
||||
También hay una tarifa reducida de 50 USD, que incluye café, cena y todas las actividades de la conferencia.
|
||||
Solo está disponible para estudiantes y grupos especiales (envíe un mensaje que fundamentando por qué solicita
|
||||
la reducción).
|
||||
</p>
|
||||
<p style="font-size:16px;padding-bottom:5px;">
|
||||
El Comité Organizador otorgará un número limitado de becas (no dude en ponerse en contacto con cualquiera de los organizadores locales).
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<hr class="separador" />
|
||||
<div class="row">
|
||||
<div class="col-xs-12">
|
||||
<h2>Conference Fees:</h2>
|
||||
<p style="font-size:16px; padding-bottom:5px;">There is a Conference Fee of 100 USD, which includes coffee, dinner and international support,
|
||||
besides all the conference activities.
|
||||
</p>
|
||||
<p style="font-size:16px;padding-bottom:5px;">
|
||||
There is also a Reduced Fee of 50 USD, which includes coffee, dinner, and all conference activities.
|
||||
This is only available for students, and special groups (please send a message why you apply for reduction).
|
||||
</p>
|
||||
<p style="font-size:16px;padding-bottom:5px;">
|
||||
A limited number of scholarships will be awarded by the Organizing Committe (please do not hesitate to contact
|
||||
any of the local organizers).
|
||||
</p>
|
||||
<hr class="separador"/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-xs-12">
|
||||
<table class="table table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Categoría</th>
|
||||
<th>Antes del 1º de Mayo</th>
|
||||
<th>Después del 1º de Mayo</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><b>Investigadores</b></td>
|
||||
<td>U$S 150 ($UY {{150*40}})</td>
|
||||
<td>U$S 200 ($UY {{200*40}})</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Estudiantes</b></td>
|
||||
<td>U$S 50 ($UY {{50*40}})</td>
|
||||
<td>U$S 100 ($UY {{100*40}})</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3"><b>*</b> Se darán descuentos o exoneraciones ante pedidos fundamentados</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="alert alert-info">
|
||||
<i class="glyphicon glyphicon-info-sign"></i> <strong>Formulario de inscripción próximamente / Inscription Form coming soon </strong><br />
|
||||
</div>
|
||||
<!-- <form id="registerform" method="POST" action novalidate="novalidate">
|
||||
|
||||
<fieldset {{ disabled }}>-->
|
||||
|
Loading…
Reference in New Issue
Block a user