Skip to content

Commit

Permalink
incorporate requested changes
Browse files Browse the repository at this point in the history
  • Loading branch information
usamabinnadeem-10 committed Nov 7, 2024
1 parent 588a608 commit 078926f
Show file tree
Hide file tree
Showing 3 changed files with 91 additions and 38 deletions.
5 changes: 4 additions & 1 deletion templates/credentials/sign-up.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
{% extends "credentials/base_cred.html" %}

{% block title %}Sign Up for Beta | Credentials{% endblock %}
{% block title %}
{% if search_type == 'sme' %}SME Sign Up Form{% endif %}
{% if search_type == 'tester' %}Tester Sign Up Form{% endif %}
{% endblock %}

{% block meta_copydoc %}
{% endblock meta_copydoc %}
Expand Down
64 changes: 43 additions & 21 deletions templates/shared/_credentials-signup-sme-form.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ <h1 class="u-no-margin--bottom">Help shape future exams</h1>
<p>
Time commitment varies by exam development phase, SME experience, and availability, ranging from a single 2-hour meeting to biweekly 1.5-hour meetings over 8 weeks. All collaboration happens online.
</p>
<em>You may update your application by resubmitting this form.</em>
</div>
</div>
</div>
Expand Down Expand Up @@ -105,6 +106,13 @@ <h3>About you</h3>
{% endif %}
</li>

<li class="p-list__item">
<label for="country" id="country">Where are you based?</label>
{% with raw="true" %}
{% include "shared/forms/_country.html" %}
{% endwith %}
</li>

<li class="p-list__item ">
<label for="NativeLanguage" id="LblNativeLanguage">What is your native language?</label>
<select id="NativeLanguage"
Expand All @@ -114,6 +122,7 @@ <h3>About you</h3>
required="">
<option value="" disabled="disabled" selected="">Select...</option>
<option value="Arabic">Arabic</option>
<option value="Balochi">Balochi</option>
<option value="Bengali">Bengali</option>
<option value="Bhojpuri">Bhojpuri</option>
<option value="Bulgarian">Bulgarian</option>
Expand Down Expand Up @@ -144,13 +153,15 @@ <h3>About you</h3>
<option value="Marathi">Marathi</option>
<option value="Nigerian Pidgin">Nigerian Pidgin</option>
<option value="Norwegian">Norwegian</option>
<option value="Pashto">Pashto</option>
<option value="Persian">Persian</option>
<option value="Polish">Polish</option>
<option value="Portuguese">Portuguese</option>
<option value="Punjabi">Punjabi</option>
<option value="Romanian">Romanian</option>
<option value="Russian">Russian</option>
<option value="Serbian">Serbian</option>
<option value="Sindhi">Sindhi</option>
<option value="Slovak">Slovak</option>
<option value="Slovenian">Slovenian</option>
<option value="Spanish">Spanish</option>
Expand Down Expand Up @@ -179,6 +190,7 @@ <h3>About you</h3>
<option value="Management">Management</option>
<option value="Senior Management">Senior Management</option>
<option value="C-suite">C-suite</option>
<option value="Other">Other</option>
</select>
</li>

Expand Down Expand Up @@ -384,7 +396,9 @@ <h3>Knowledge</h3>
</li>

<li class="p-list__item ">
<label for="HasFormalTechnicalDegree" id="LblHasFormalTechnicalDegree">Do you have a formal technical degree?</label>
<label for="HasFormalTechnicalDegree" id="LblHasFormalTechnicalDegree">
Do you have a formal technical degree? (Computer Science, Information Technology, Cybersecurity, or related field)
</label>
<select id="HasFormalTechnicalDegree"
name=""
aria-labelledby="LblHasFormalTechnicalDegree"
Expand Down Expand Up @@ -437,6 +451,14 @@ <h3>Knowledge</h3>
type="checkbox" />
<span class="p-checkbox__label" id="FormalEducation">Formal Education (university or similar)</span>
</label>
<label class="p-checkbox">
<input class="p-checkbox__input"
value="Self Teaching"
aria-labelledby="Other"
name=""
type="checkbox" />
<span class="p-checkbox__label" id="Other">Other</span>
</label>
</div>
<div class="col-4">
<label class="p-checkbox">
Expand All @@ -459,26 +481,6 @@ <h3>Knowledge</h3>
</div>
</fieldset>
</li>
</ul>
</fieldset>

<fieldset class="u-no-margin--bottom">
<h3>Benchmark</h3>
<ul class="p-list">
<li class="p-list__item ">
<label for="UbuntuOverallExperience" id="LblUbuntuOverallExperience">How long have you used/worked with Ubuntu?</label>
<select id="UbuntuOverallExperience"
name="cube_ubuntu_experience"
aria-labelledby="LblUbuntuOverallExperience"
class="is-required"
required="">
<option value="" disabled="disabled" selected="">Select...</option>
<option value="4-7 years">4-7 years</option>
<option value="8-10 years">8-10 years</option>
<option value="10-15 years">10-15 years</option>
<option value="16 or more years">16 or more years</option>
</select>
</li>

<li class="p-list__item ">
<label for="UbuntuLastProfessionalExperience"
Expand All @@ -502,6 +504,26 @@ <h3>Benchmark</h3>
</select>
</li>

<li class="p-list__item ">
<label for="UbuntuOverallExperience" id="LblUbuntuOverallExperience">How long have you used/worked with Ubuntu?</label>
<select id="UbuntuOverallExperience"
name="cube_ubuntu_experience"
aria-labelledby="LblUbuntuOverallExperience"
class="is-required"
required="">
<option value="" disabled="disabled" selected="">Select...</option>
<option value="4-7 years">4-7 years</option>
<option value="8-10 years">8-10 years</option>
<option value="10-15 years">10-15 years</option>
<option value="16 or more years">16 or more years</option>
</select>
</li>
</ul>
</fieldset>

<fieldset class="u-no-margin--bottom">
<h3>Benchmark</h3>
<ul class="p-list">
<li class="p-list__item">
<label for="OtherCertifications" id="LblOtherCertifications">
Do you hold any certifications from the following entities?
Expand Down
60 changes: 44 additions & 16 deletions templates/shared/_credentials-signup-tester-form.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ <h1 class="u-no-margin--bottom">Ubuntu CUE</h1>
<p>
We are looking for testers to help us shape the future of open-source certifications. Register for the beta to claim your spot and receive your invitation to test your Linux knowledge with us!
</p>
<em>You may update your application by resubmitting this form.</em>
</div>
</div>
</div>
Expand Down Expand Up @@ -99,6 +100,13 @@ <h3>About you</h3>
{% endif %}
</li>

<li class="p-list__item">
<label for="country" id="country">Where are you based?</label>
{% with raw="true" %}
{% include "shared/forms/_country.html" %}
{% endwith %}
</li>

<li class="p-list__item ">
<label for="NativeLanguage" id="LblNativeLanguage">What is your native language?</label>
<select id="NativeLanguage"
Expand All @@ -108,6 +116,7 @@ <h3>About you</h3>
required="">
<option value="" disabled="disabled" selected="">Select...</option>
<option value="Arabic">Arabic</option>
<option value="Balochi">Balochi</option>
<option value="Bengali">Bengali</option>
<option value="Bhojpuri">Bhojpuri</option>
<option value="Bulgarian">Bulgarian</option>
Expand Down Expand Up @@ -138,13 +147,15 @@ <h3>About you</h3>
<option value="Marathi">Marathi</option>
<option value="Nigerian Pidgin">Nigerian Pidgin</option>
<option value="Norwegian">Norwegian</option>
<option value="Pashto">Pashto</option>
<option value="Persian">Persian</option>
<option value="Polish">Polish</option>
<option value="Portuguese">Portuguese</option>
<option value="Punjabi">Punjabi</option>
<option value="Romanian">Romanian</option>
<option value="Russian">Russian</option>
<option value="Serbian">Serbian</option>
<option value="Sindhi">Sindhi</option>
<option value="Slovak">Slovak</option>
<option value="Slovenian">Slovenian</option>
<option value="Spanish">Spanish</option>
Expand Down Expand Up @@ -175,6 +186,7 @@ <h3>About you</h3>
<option value="Management">Management</option>
<option value="Senior Management">Senior Management</option>
<option value="C-suite">C-suite</option>
<option value="Other">Other</option>
</select>
</li>

Expand Down Expand Up @@ -243,6 +255,14 @@ <h3>Knowledge</h3>
type="checkbox" />
<span class="p-checkbox__label" id="FormalEducation">Formal Education (university or similar)</span>
</label>
<label class="p-checkbox">
<input class="p-checkbox__input"
value="Self Teaching"
aria-labelledby="Other"
name=""
type="checkbox" />
<span class="p-checkbox__label" id="Other">Other</span>
</label>
</div>
<div class="col-4">
<label class="p-checkbox">
Expand Down Expand Up @@ -286,22 +306,6 @@ <h3>Knowledge</h3>
</select>
</li>

<li class="p-list__item ">
<label for="UbuntuOverallExperience" id="LblUbuntuOverallExperience">How long have you used/worked with Ubuntu?</label>
<select id="UbuntuOverallExperience"
name="cube_ubuntu_experience"
aria-labelledby="LblUbuntuOverallExperience"
class="is-required"
required="">
<option value="" disabled="disabled" selected="">Select...</option>
<option value="Never">Never</option>
<option value="1-3 years">1-3 years</option>
<option value="4-7 years">4-7 years</option>
<option value="8-10 years">8-10 years</option>
<option value="10 years or more">10 years or more</option>
</select>
</li>

<li class="p-list__item ">
<label for="UbuntuLastProfessionalExperience"
id="LblUbuntuLastProfessionalExperience">
Expand All @@ -323,6 +327,22 @@ <h3>Knowledge</h3>
<option value="10 years ago or more">10 years ago or more</option>
</select>
</li>

<li class="p-list__item ">
<label for="UbuntuOverallExperience" id="LblUbuntuOverallExperience">How long have you used/worked with Ubuntu?</label>
<select id="UbuntuOverallExperience"
name="cube_ubuntu_experience"
aria-labelledby="LblUbuntuOverallExperience"
class="is-required"
required="">
<option value="" disabled="disabled" selected="">Select...</option>
<option value="Never">Never</option>
<option value="1-3 years">1-3 years</option>
<option value="4-7 years">4-7 years</option>
<option value="8-10 years">8-10 years</option>
<option value="10 years or more">10 years or more</option>
</select>
</li>
</ul>
</fieldset>

Expand Down Expand Up @@ -448,6 +468,14 @@ <h3>Benchmark</h3>
type="checkbox" />
<span class="p-checkbox__label" id="WorkProvided">They were gifted to me/provided by my work</span>
</label>
<label class="p-checkbox">
<input class="p-checkbox__input"
value="Other"
aria-labelledby="Other"
name=""
type="checkbox" />
<span class="p-checkbox__label" id="Other">Other</span>
</label>
</div>
</div>
</fieldset>
Expand Down

0 comments on commit 078926f

Please sign in to comment.