-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrequestion.message.html
60 lines (55 loc) · 1.6 KB
/
requestion.message.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<template name="tutor_message">
<div style="max-width: 480px; margin: auto;">
<img src="http://computc.org/images/logobg.png" alt="" style="width: 100%;"/>
<div style="margin-top: 1em; margin-bottom: 1em;">
<p>
We have received a request for tutoring! Are you available to help this student with their coursework? If you
can, be sure to send them an email! But if you can't, be sure to forward this email to someone else! Thanks!
</p>
</div>
<div style="margin-top: 1em; margin-bottom: 1em;">
<b style="font-size: 2em">Student</b>
<div>
<b>Name:</b>
<span>{{name}}</span>
</div>
<div>
<b>Email:</b>
<span>{{email}}</span>
</div>
<div>
<b>Course:</b>
<span>{{course}}</span>
</div>
</div>
<div style="margin-top: 1em; margin-bottom: 1em;">
<b style="font-size: 2em">Schedule</b>
<div>
<b>Monday:</b>
<span>{{schedule.monday}}</span>
</div>
<div>
<b>Tuesday:</b>
<span>{{schedule.tuesday}}</span>
</div>
<div>
<b>Wednesday:</b>
<span>{{schedule.wednesday}}</span>
</div>
<div>
<b>Thursday:</b>
<span>{{schedule.thursday}}</span>
</div>
<div>
<b>Friday:</b>
<span>{{schedule.friday}}</span>
</div>
</div>
<div style="margin-top: 1em; margin-bottom: 1em;">
<p>
Do you have any interest in web development? We need your help to build more on requestion! You can contribute to the project at our
repository, which you can find at <a href="http://www.github.com/computc/requestion">http://www.github.com/computc/requestion</a>. Thanks!
</p>
</div>
</div>
</template>