Skip to content

Commit 00c4445

Browse files
committed
added a how-to-use
1 parent 8ad332c commit 00c4445

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

conditional/templates/major_project_submission.html

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,10 @@ <h3 class="page-title">Major Project Form</h3>
3434
placeholder="A quick, one-sentence pitch for your project and what it does.">
3535
<div class="row">
3636
<div class="col-lg-6">
37-
<label class="form-label" for="skills-applied">Skills Applied</label>
37+
<label class="form-label" for="skills-applied">Skills Applied<span>Press Enter or , to separate skills</span></label>
3838
<div id="skills-applied" class="form-control form-skilltags">
3939
<input id="skill-input" name="skill" type="text" maxlength="16" placeholder="Add a skill">
40-
4140
<span class="placeholder">List what skills you meaningfully used while working on this project (at least 2!)</span></div>
42-
<!--<textarea id="skills-applied" name="skills-applied" class="form-control form-textarea"
43-
rows="5"
44-
placeholder="List what skills you meaningfully used while working on this project (at least 2!)"><span>Test</span></textarea>-->
4541
</div>
4642
<div class="col-lg-6">
4743
<label class="form-label" for="time-commitment">Time Commitment</label>

frontend/javascript/modules/majorProjectForm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default class MajorProjectForm {
77
this.form = form;
88
this.endpoint = '/major_project/submit';
99
this.tags_written = false;
10-
this.tag_keys = ["Enter", "Comma", "Tab"];
10+
this.tag_keys = ["Enter", "Comma"];
1111
this.render();
1212
}
1313

frontend/stylesheets/pages/_major-project.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
font-size: 2rem;
99
}
1010

11+
.form-label span {
12+
font-size: 1rem;
13+
}
14+
1115
.form-textarea {
1216
resize: vertical;
1317
}

0 commit comments

Comments
 (0)