2018-10-05 16:13:30 +00:00
|
|
|
{% extends "layout.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<script src="js/data.js"></script>
|
|
|
|
<script src="js/registerform.js"></script>
|
2019-11-06 00:20:53 +00:00
|
|
|
<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;
|
|
|
|
}
|
2018-10-05 16:13:30 +00:00
|
|
|
|
2019-11-06 00:20:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
</style>
|
|
|
|
|
2018-11-28 19:25:03 +00:00
|
|
|
|
2018-10-05 16:13:30 +00:00
|
|
|
{% if closed %}
|
|
|
|
{% set disabled="disabled" %}
|
|
|
|
<div class="alert alert-danger">
|
|
|
|
<strong>Registration has been closed!</strong><br/>
|
|
|
|
For any further questions, please contact: <a class="alert-link" href="mailto:ggdworkshop@cmat.edu.uy">ggdworkshop@cmat.edu.uy</a>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
2019-11-06 00:20:53 +00:00
|
|
|
<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>
|
2018-10-10 16:16:43 +00:00
|
|
|
</div>
|
2019-11-06 00:20:53 +00:00
|
|
|
<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>
|
|
|
|
|
|
|
|
|
|
|
|
|
2018-10-05 16:13:30 +00:00
|
|
|
|
2019-11-06 00:20:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<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>
|
2018-11-28 19:25:03 +00:00
|
|
|
<!-- <form id="registerform" method="POST" action novalidate="novalidate">
|
2018-10-05 16:13:30 +00:00
|
|
|
|
2018-11-28 19:25:03 +00:00
|
|
|
<fieldset {{ disabled }}>-->
|
2018-10-05 16:13:30 +00:00
|
|
|
<!-- Nombre y Apellido -->
|
2018-11-28 19:25:03 +00:00
|
|
|
<!-- <div class="row">
|
2018-10-05 16:13:30 +00:00
|
|
|
<div class="form-group col-xs-12 col-sm-6">
|
|
|
|
<label class="control-label" for="nombre">First Name</label>
|
|
|
|
<div class="input-container">
|
|
|
|
<input id="nombre" class="form-control" name="nombre" type="text">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group col-xs-12 col-sm-6">
|
|
|
|
<label class="control-label" for="apellido">Last Name</label>
|
|
|
|
<div class="input-container">
|
|
|
|
<input id="apellido" class="form-control" name="apellido" type="text">
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-11-28 19:25:03 +00:00
|
|
|
</div>-->
|
2018-10-05 16:13:30 +00:00
|
|
|
|
|
|
|
<!-- Título y Afiliación -->
|
2018-11-28 19:25:03 +00:00
|
|
|
<!--<div class="row">
|
2018-10-05 16:13:30 +00:00
|
|
|
<div class="form-group col-xs-12 col-sm-6">
|
|
|
|
<label class="control-label" for="titulo">Title</label>
|
|
|
|
<div class="input-container">
|
|
|
|
<input id="titulo" class="form-control" name="titulo"
|
|
|
|
placeholder="Professor, Post Doc, Grad Student(1st year, 2nd year, etc..)" type="text">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group col-xs-12 col-sm-6">
|
|
|
|
<label class="control-label " for="afiliacion">Affiliation</label>
|
|
|
|
<div class="input-container">
|
|
|
|
<input id="afiliacion" class="form-control" name="afiliacion"
|
|
|
|
placeholder="Which university or organization" type="text">
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-11-28 19:25:03 +00:00
|
|
|
</div>-->
|
2018-10-05 16:13:30 +00:00
|
|
|
|
|
|
|
<!-- Ciudad y Pais -->
|
2018-11-28 19:25:03 +00:00
|
|
|
<!--<div class="row">
|
2018-10-05 16:13:30 +00:00
|
|
|
<div class="form-group col-xs-12 col-sm-6">
|
|
|
|
<label class=" control-label" for="ciudad">City</label>
|
|
|
|
<div class="input-container">
|
|
|
|
<input id="ciudad" name="ciudad" class="form-control" type="text">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group col-xs-12 col-sm-6">
|
|
|
|
<label class=" control-label" for="pais">Country</label>
|
|
|
|
<div class="input-container">
|
|
|
|
<select {{ disabled }} id="pais" name="pais">
|
|
|
|
<option></optoon>
|
|
|
|
</select>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-11-28 19:25:03 +00:00
|
|
|
</div>-->
|
2018-10-05 16:13:30 +00:00
|
|
|
|
|
|
|
<!-- Email -->
|
2018-11-28 19:25:03 +00:00
|
|
|
<!--<div class="row">
|
2018-10-05 16:13:30 +00:00
|
|
|
<div class="form-group col-xs-12">
|
|
|
|
<label class="control-label" for="email">Email</label>
|
|
|
|
<div class="input-container">
|
|
|
|
<input id="email" class="form-control" name="email"
|
|
|
|
placeholder="mail@example.com" type="email">
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-11-28 19:25:03 +00:00
|
|
|
</div>-->
|
2018-10-05 16:13:30 +00:00
|
|
|
|
|
|
|
<!-- Beggining date and Endig Date-->
|
2018-11-28 19:25:03 +00:00
|
|
|
<!--<div class="row">
|
2018-10-05 16:13:30 +00:00
|
|
|
<div class="form-group col-xs-12 col-sm-6">
|
|
|
|
<label class="control-label " for="txtbda">Beginning date attending</label>
|
|
|
|
<div class="input-container">
|
|
|
|
<input id="txtbda" class="form-control" placeholder="DD/MM/AAAA" name="bda">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group col-xs-12 col-sm-6">
|
|
|
|
<label class="control-label " for="txteda">Ending date attending</label>
|
|
|
|
<div class="input-container">
|
|
|
|
<input id="txteda" class="form-control" placeholder="DD/MM/AAAA" name="eda">
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-11-28 19:25:03 +00:00
|
|
|
</div>-->
|
2018-10-05 16:13:30 +00:00
|
|
|
|
|
|
|
<!-- Financial Support -->
|
2018-10-10 16:16:43 +00:00
|
|
|
<!-- <div class="row">
|
2018-10-05 16:13:30 +00:00
|
|
|
<div class="form-group col-xs-12">
|
|
|
|
<label class="control-label" for="sifinan">
|
|
|
|
Are you asking for support from the conference?
|
|
|
|
</label>
|
|
|
|
<div class="radios input-container">
|
|
|
|
<label class="radio-inline"><input id="sifinan" type="radio" name="financiacion" value="1">Yes</label>
|
|
|
|
<label class="radio-inline"><input id="nofinan" type="radio" name="financiacion" value="0">No</label>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<div class="col-sm-8 alert alert-info" style="display:none;margin:10px 0px 5px 0px;">
|
|
|
|
|
|
|
|
<em class="text-justify">
|
|
|
|
We have submitted funding requests and hope to cover the housing
|
|
|
|
for a shared room, but we cannot make a guarantee at this time
|
|
|
|
</em>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-10-10 16:16:43 +00:00
|
|
|
</div>-->
|
2018-10-05 16:13:30 +00:00
|
|
|
|
|
|
|
<!-- Invitation and letter of -->
|
|
|
|
<div class="row">
|
2018-10-10 16:16:43 +00:00
|
|
|
<!-- <div class="form-group col-xs-12 col-sm-6">
|
|
|
|
|
2018-10-05 16:13:30 +00:00
|
|
|
<label class="control-label" for="invited">
|
|
|
|
Were you invited to participate in this conference?
|
|
|
|
</label>
|
|
|
|
<div class="input-container">
|
|
|
|
<div class="radio">
|
|
|
|
<label><input id="invited" type="radio" name="invited" value="1">Yes, I was previously invited</label>
|
|
|
|
</div>
|
|
|
|
<div class="radio">
|
|
|
|
<label><input id="noinvited" type="radio" name="invited" value="0">No, I am applying (Registration committee will notifiy you if accepted)</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-10-10 16:16:43 +00:00
|
|
|
</div>-->
|
2018-10-05 16:13:30 +00:00
|
|
|
|
2018-11-28 19:25:03 +00:00
|
|
|
<!-- <div class="form-group col-xs-12 col-sm-12">
|
2018-10-05 16:13:30 +00:00
|
|
|
<label class="control-label" for="invited">
|
|
|
|
Do you need a letter of invitation?
|
|
|
|
</label>
|
|
|
|
<div class="input-container">
|
|
|
|
<label class="radio-inline"><input id="sifinan" type="radio" name="letterinvited" value="1">Yes</label>
|
|
|
|
<label class="radio-inline"><input id="nofinan" type="radio" name="letterinvited" value="0">No</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-11-28 19:25:03 +00:00
|
|
|
</div>-->
|
2018-10-10 16:16:43 +00:00
|
|
|
|
2018-10-05 16:13:30 +00:00
|
|
|
<!-- Rooming Preferences -->
|
2018-11-28 19:25:03 +00:00
|
|
|
<!-- <div class="row">
|
2018-10-05 16:13:30 +00:00
|
|
|
<div class="form-group col-xs-12 col-sm-6">
|
|
|
|
<label class="control-label " for="roomtype">Rooming Preference</label>
|
|
|
|
<div class="input-container">
|
|
|
|
<select {{ disabled }} id="roomtype" name="roomtype">
|
|
|
|
<option></optoon>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group col-xs-12 col-sm-6">
|
|
|
|
<label class=" control-label" for="roomate">Name of preferred roommate (if any)</label>
|
|
|
|
<div class="input-container">
|
|
|
|
|
|
|
|
<input id="roomate" name="roomate" class="form-control"
|
|
|
|
type="text">
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-11-28 19:25:03 +00:00
|
|
|
</div>-->
|
2018-10-05 16:13:30 +00:00
|
|
|
|
|
|
|
<!--Captcha -->
|
2018-11-28 19:25:03 +00:00
|
|
|
<!-- <div class="row">
|
2018-10-05 16:13:30 +00:00
|
|
|
<div class="form-group col-xs-12">
|
|
|
|
<div class="input-container">
|
2018-10-16 16:35:45 +00:00
|
|
|
|
2018-10-05 16:13:30 +00:00
|
|
|
<div class="g-recaptcha"
|
2018-10-16 16:35:45 +00:00
|
|
|
data-sitekey="{{ sitekey }}"
|
|
|
|
data-callback="recaptchaCallback">
|
|
|
|
</div>
|
2018-10-05 16:13:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
<input type="hidden" class="hiddenRecaptcha required" name="hiddenRecaptcha" id="hiddenRecaptcha">
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-11-28 19:25:03 +00:00
|
|
|
</div>-->
|
2018-10-05 16:13:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
<!-- Confirm Button -->
|
2018-11-28 19:25:03 +00:00
|
|
|
<!-- <div class="row">
|
2018-10-05 16:13:30 +00:00
|
|
|
<div class="form-group col-xs-12 col-sm-8">
|
|
|
|
<button type="submit" class="btn-lg btn btn-primary">Register</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-11-28 19:25:03 +00:00
|
|
|
<fieldset disabled="disabled">
|
|
|
|
</form>-->
|
|
|
|
|
2018-10-05 16:13:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2018-10-17 18:11:29 +00:00
|
|
|
|
2018-11-28 19:25:03 +00:00
|
|
|
<!--<div id="msgModal" class="modal fade" role="dialog">
|
2018-10-05 16:13:30 +00:00
|
|
|
<div class="modal-dialog">
|
|
|
|
|
|
|
|
<div class="modal-content">
|
|
|
|
<div class="modal-header">
|
|
|
|
<button type="button" class="close" data-dismiss="modal">×</button>
|
2018-10-16 16:35:45 +00:00
|
|
|
<h4 class="modal-title">Surface Dynamics 2018 Workshop Registration</h4>
|
2018-10-05 16:13:30 +00:00
|
|
|
</div>
|
|
|
|
<div class="modal-body">
|
|
|
|
<div class="alert">
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
2018-11-28 19:25:03 +00:00
|
|
|
</div>-->
|
2018-10-05 16:13:30 +00:00
|
|
|
<!--<div class="modal-footer">
|
|
|
|
<button type="button" class="btn btn-default" data-dismiss="modal">Sí
|
|
|
|
</button>
|
|
|
|
<button type="button" class="btn btn-default" data-dismiss="modal">No
|
|
|
|
</button>
|
2018-11-28 19:25:03 +00:00
|
|
|
</div>
|
2018-10-05 16:13:30 +00:00
|
|
|
</div>
|
|
|
|
|
2018-11-28 19:25:03 +00:00
|
|
|
</div>-->
|
2018-10-05 16:13:30 +00:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|