-
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.
Use president's email instead of org email
- Loading branch information
1 parent
b664fa8
commit d7232d4
Showing
1 changed file
with
4 additions
and
1 deletion.
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 |
---|---|---|
@@ -1,8 +1,11 @@ | ||
import { Alert, Button, Col, Form, Row } from "react-bootstrap"; | ||
import React, { useState } from "react"; | ||
|
||
// Update these values each year before recruitment. | ||
const SUBMIT_URL = "https://tse-fulcrum-2023-i83hg.ondigitalocean.app/api/application"; | ||
const PRESIDENT_EMAIL = "[email protected]"; | ||
const DEADLINE = new Date("2023-10-15T23:59:59-07:00"); // PDT is UTC-7 | ||
|
||
const deadlineStr = DEADLINE.toLocaleString("en-US"); | ||
|
||
const ApplicationForm = (props) => { | ||
|
@@ -383,7 +386,7 @@ const ApplicationForm = (props) => { | |
The TSE Early Start Training (TEST) program provides students from <strong>underprivileged backgrounds</strong>, who have little to no technical design/development experience, with a first step into exploring UI/UX design and software engineering. TEST designers and developers will learn the fundamentals of their domain while working on beginner-level projects. TEST is a one-year program provided by TSE. After completing the program, if TEST designers and developers wish to join TSE as general members, they must apply during the next recruitment cycle. | ||
</p> | ||
<p> | ||
You may apply to either TSE or the TEST program, but not both. Please apply to the TEST program if you believe it would be a good fit for you. Once you apply to the TEST program, we will not be able to consider you for general admission, and vice versa. If you are unsure about which program is right for you, please email [email protected]. | ||
You may apply to either TSE or the TEST program, but not both. Please apply to the TEST program if you believe it would be a good fit for you. Once you apply to the TEST program, we will not be able to consider you for general admission, and vice versa. If you are unsure about which program is right for you, please email {PRESIDENT_EMAIL}. | ||
</p> | ||
</Form.Text> | ||
</Row> | ||
|