-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a5ccfb7
commit b7a86bc
Showing
3 changed files
with
49 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import Ember from 'ember'; | ||
|
||
export default Ember.Controller.extend({ | ||
model: Ember.Object.create({}), | ||
|
||
actions: { | ||
submitApplicationForm: function(){ | ||
this.set('model.submitted', true); | ||
} | ||
} | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,12 @@ | ||
<div id="mentor-application"> | ||
<h3>Apply To Become a Mentor</h3> | ||
<section> | ||
<div id="application-form-description"> | ||
<p>Welcome to mentors4all! Our goal is to match up as many mentors (computer science professionals and | ||
students) | ||
with CS teachers as possible to support Chicago's CS4All initiative.</p> | ||
<p>Mentoring is a great chance to practice what you know!</p> | ||
{{#liquid-if model.submitted}} | ||
Thank you for applying! You will be contacted pending the CS4ALL mentor review process. | ||
|
||
<p>Mentors are professionals, undergrads/grads, or other computer science experts that are interested in | ||
providing in-classroom or out-of-classroom assistance to new CS teachers. A good mentor will model | ||
computational thinking for the students (ask students the right questions and you don't have to give | ||
them the answers), and work deliberately with the teacher to improve their knowledge of computer science and | ||
computational thinking.</p> | ||
<p> | ||
<strong>Please Note:</strong> | ||
<ul> | ||
<li>please sign up with the intent of coming to a classroom on a regular basis. It takes time to build a | ||
good | ||
relationship and really enhance a classroom. | ||
</li> | ||
<li>mentors are not meant to supplant the teacher's role during classroom instructional time. Leading an | ||
activity is | ||
all right, but the teacher is the authority in their classroom! | ||
</li> | ||
</ul> | ||
</p> | ||
</div> | ||
{{partial 'partials/application-form'}} | ||
Keep learning! | ||
{{else}} | ||
{{partial 'partials/application-form'}} | ||
{{/liquid-if}} | ||
</section> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters