1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
# Registration {#register}
Registration for OMPL is completely voluntary. We will not spam you with emails. Work on OMPL is funded in part by the National Science Foundation (NSF). It is extremely helpful for us if we can report to the NSF where and how our work is being used. Your cooperation would be highly appreciated.
\htmlonly
<form action="https://formspree.io/mmoll@rice.edu" method="POST">
<div class="form-group">
<input type="email" class="form-control" name="_replyto" value='' placeholder="Email (optional)">
</div>
<div class="form-group">
<input type="text" class="form-control" name="name" value='' placeholder="School / employer">
</div>
<div class="form-group">
<b>I plan to use OMPL for (check all that apply):</b>
<div class="form-check">
<input class="form-check-input" type="checkbox" name="research" id="research" value='yes'>
<label class="form-check-label" for="research">research</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" name="education" id="education" value='yes'>
<label class="form-check-label" for="education">education</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" name="industry" id="industry" value='yes'>
<label class="form-check-label" for="industry">industrial applications</label>
</div>
</div>
<div class="form-group">
<textarea id="message" name="message" rows=6 class="form-control" placeholder="Comments / suggestions (optional)"></textarea>
</div>
<input type="hidden" name="_next" value="thank-you.html" />
<input type="hidden" name="_subject" value="=== OMPL registration ===" />
<input type="hidden" name="IP" id="IP">
<script type="application/javascript">
window.onload = function () {
$.getJSON("https://api.ipify.org?format=jsonp&callback=?",function(json){$("#IP").val(json.ip);});};
</script>
<input type="text" name="_gotcha" style="display:none" />
<input type="submit" value="Send" name='submit' class="btn btn-primary" />
</form>
\endhtmlonly
|