hack-wpi-python/templates/register.html
2019-11-19 00:15:13 -05:00

52 lines
2.4 KiB
HTML

{% include 'header.html' %}
<link href="../static/css/materialize.min.css" rel="stylesheet">
<div style="height: 100%;">
<div id="registration-banner" class="parallax-container valign-wrapper">
<div class="section">
<h2 class="header center red-text text-darken-2">Registration</h2>
</div>
<div class="parallax"><img src="../static/img/background1.jpg" alt="background"></div>
</div>
<div class="container">
<div class="container">
<h1>Hi {{ name }}, just a few more steps!</h1>
<div class="section">
<form method="post" action="/register" enctype="multipart/form-data">
<div>
<p><b>If you'd like, add your resume to send to sponsors... </b></p>
<div class="file-field input-field">
<div class="btn">
<span>File</span>
<input id="resume" name="resume" type="file"/>
</div>
<div class="file-path-wrapper">
<input class="file-path validate" type="text">
</div>
</div>
</div>
<p>By registering & attending, you agree to the following policies:</p>
<p>
<a href="/tos">Hack@WPI's Terms and Conditions</a>
</p>
<p>
<a href="https://github.com/MLH/mlh-policies/blob/master/data-sharing.md">MLH's Data Sharing Notice</a>
</p>
<p>
<a href="https://mlh.io/privacy">MLH's Privacy Policy</a>
</p>
<p>
<a href="https://github.com/MLH/mlh-policies/blob/master/prize-terms-and-conditions/contest-terms.md">MLH's
Contest Terms and Conditions</a>
</p>
<p>
<a href="https://static.mlh.io/docs/mlh-code-of-conduct.pdf">MLH's Code of Conduct</a>
</p>
<br>
<input type="checkbox" name="tos" id="checkboxid" required><label for="checkboxid"><b style="color:black;">Do you agree with these Rules?</b></label>
<br><br>
<input name="submit" class="btn btn-lg btn-primary btn-invert" type="submit" value="Submit"/>
</form>
</div>
</div>
</div>
{% include 'footer.html' %}