This repository has been archived on 2023-02-07. You can view files and clone it, but cannot push or open issues or pull requests.
Files
blender-bfct/blender-bfct/application/templates/apply.html

79 lines
3.7 KiB
HTML
Executable File

{% extends 'layout.html' %}
{% block body %}
<div class="row">
<div class="col-md-8">
<form class="form-horizontal" method="POST" action="{{url_for('apply')}}">
<fieldset>
{{ form.hidden_tag() }}
<div class="input-group input-group-lg width-full">
{{ form.network_profile(class='form-control', placeholder='Network Profile URL') }}
<label class="control-label">Blender Network Profile</label>
</div>
<div class="input-group input-group-lg width-full">
{{ form.website(class='form-control', placeholder='Your website') }}
<label class="control-label">Website</label>
</div>
<div class="input-group input-group-lg width-full">
{{ form.city_country(class='form-control', placeholder='Your city and country') }}
<label class="control-label">City and Country</label>
</div>
<div class="input-group input-group-lg width-full">
{{ form.teaching(class='form-control') }}
<label class="control-label">Are you teaching at a university?</label>
</div>
<div class="input-group input-group-lg width-full">
{{ form.institution_name(class='form-control', placeholder='School or institution name') }}
<label class="control-label">School or Institution Name</label>
</div>
<div class="input-group input-group-lg width-full">
{{ form.skills(class='form-control') }}
<label class="control-label">Areas of Expertise</label>
</div>
<div class="input-group input-group-lg width-full">
{{ form.video_example(class='form-control', placeholder='Video Example') }}
<label class="control-label">Video Example</label>
</div>
<div class="input-group input-group-lg width-full">
{{ form.written_example(class='form-control', placeholder='Written Example') }}
<label class="control-label">Written Example</label>
</div>
<div class="input-group input-group-lg width-full">
{{ form.portfolio_cv(class='form-control', placeholder='Porftolio and CV') }}
<label class="control-label">Porftolio / Curriculum Vitae</label>
</div>
<div class="input-group input-group-lg width-full">
{{ form.bio_message(class='form-control', placeholder='Bio and message') }}
<label class="control-label">Biography or Personal Message</label>
</div>
<button class="btn btn-default btn-success btn-squishy width-half pull-right offset-top-2" type="submit" value="Go">
Send Application <i class="fa fa-send"></i>
</button>
</fieldset>
</form>
</div>
<div class="col-md-4 box">
<i class="backicon fa fa-question-circle"></i>
<h2>What happens when I apply?</h2>
<p>
Once we receive your application, the Blender Foundation Certification Board
will proceed to review it. This may take some days.
<br/><br/>You can come back to this page and check
the status of your application anytime.
<br/><br/>Once your application has been reviewed, you'll receive
an e-mail with the results, and instructions on how to proceed.
</p>
</div>
</div>
{% endblock %}