-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpacket_start.html
More file actions
14 lines (13 loc) · 1.14 KB
/
packet_start.html
File metadata and controls
14 lines (13 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% extends "extend/email.html" %}
{% block body %}
<div class="container main">
<h2>Hello {{ packet.freshman.name }},</h2>
<h3>Welcome to Computer Science House!</h3>
<p>Soon you'll starting the introductory process for CSH, and the first part of that is Packet.</p>
<p>Your packet will start on <span class="badge">{{ packet.start.strftime('%A, %B %-d') }} at {{ packet.start.strftime('%-I:%M %p') }}</span></p>
<p>You can view your packet at <a href="{{ config["PROTOCOL"] + config["PACKET_INTRO"] }}">{{ config["PACKET_INTRO"] }}</a> once you receive credentials.</p>
<p>If it is <b>past the start date</b> and you have still not received credentials, please reach out to an <a href="mailto:rtp@csh.rit.edu">RTP</a></p>
<p>If it is <b>past the start date</b> and you have any questions about Packet or the introductory process, email <a href="mailto:evals@csh.rit.edu">evals@csh.rit.edu</a></p>
<p>If it is <b>past the start date</b> and you have any questions about login credentials or any technical issues, email <a href="mailto:rtp@csh.rit.edu">rtp@csh.rit.edu</a></p>
</div>
{% endblock %}