Skip to content

Commit

Permalink
added a how-to-use
Browse files Browse the repository at this point in the history
  • Loading branch information
Mobmaker55 committed Sep 15, 2024
1 parent 8ad332c commit 00c4445
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 1 addition & 5 deletions conditional/templates/major_project_submission.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,10 @@ <h3 class="page-title">Major Project Form</h3>
placeholder="A quick, one-sentence pitch for your project and what it does.">
<div class="row">
<div class="col-lg-6">
<label class="form-label" for="skills-applied">Skills Applied</label>
<label class="form-label" for="skills-applied">Skills Applied<span>Press Enter or , to separate skills</span></label>
<div id="skills-applied" class="form-control form-skilltags">
<input id="skill-input" name="skill" type="text" maxlength="16" placeholder="Add a skill">

<span class="placeholder">List what skills you meaningfully used while working on this project (at least 2!)</span></div>
<!--<textarea id="skills-applied" name="skills-applied" class="form-control form-textarea"
rows="5"
placeholder="List what skills you meaningfully used while working on this project (at least 2!)"><span>Test</span></textarea>-->
</div>
<div class="col-lg-6">
<label class="form-label" for="time-commitment">Time Commitment</label>
Expand Down
2 changes: 1 addition & 1 deletion frontend/javascript/modules/majorProjectForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default class MajorProjectForm {
this.form = form;
this.endpoint = '/major_project/submit';
this.tags_written = false;
this.tag_keys = ["Enter", "Comma", "Tab"];
this.tag_keys = ["Enter", "Comma"];
this.render();
}

Expand Down
4 changes: 4 additions & 0 deletions frontend/stylesheets/pages/_major-project.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
font-size: 2rem;
}

.form-label span {
font-size: 1rem;
}

.form-textarea {
resize: vertical;
}
Expand Down

0 comments on commit 00c4445

Please sign in to comment.