diff --git a/website/.gitignore b/website/.gitignore
index e5d0254d0bd444bbc69f6ba4626b945b2bd724ab..8b63161329bb240e4cd1fb6495ba34d2ca1da42a 100644
--- a/website/.gitignore
+++ b/website/.gitignore
@@ -1,5 +1,6 @@
 output/
 PASSWORD
+TEAM
 lib/python2.7/site-packages/
 pelicanconf.pyc
 *.pyc
diff --git a/website/content/files/492FinalReport.pdf b/website/content/files/492FinalReport.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..6a0264d9736ce63f87ca3f212bbaace41979f4da
Binary files /dev/null and b/website/content/files/492FinalReport.pdf differ
diff --git a/website/content/pages/documents.md b/website/content/pages/documents.md
index 26e6e6b37d8a52dacb5dab80fb95313a320b1057..d1e2971cfeb2d82a9ca7808e39e37d3c98025377 100644
--- a/website/content/pages/documents.md
+++ b/website/content/pages/documents.md
@@ -13,6 +13,10 @@ sortorder: 005
 [Design Document 1](/files/DesignDocument1.docx.pdf)  
 [Design Document 2](/files/DesignDocument2.pdf)  
 
+## Final Report
+
+[Final Report](/files/492FinalReport.pdf)  
+
 ## Weekly Reports
 <iframe src="https://drive.google.com/embeddedfolderview?id=0BywzM7Q_7PUSeF8tdWpmMVN0eG8#list" width="100%" height="500" frameborder="0"></iframe>
 
diff --git a/website/scripts/deploy.sh b/website/scripts/deploy.sh
index f3902dd5305a912393e375c5999ce649addbe5ee..caffc9f4a86c8f78380feadc28102cfa675566e5 100644
--- a/website/scripts/deploy.sh
+++ b/website/scripts/deploy.sh
@@ -1,24 +1,27 @@
 #!/bin/bash
 
-HOST=may1716.sd.ece.iastate.edu
-USERNAME=may1716
 
-if [ ! -e PASSWORD ]; then
+if [ ! -e PASSWORD ] || [ ! -e TEAM ]; then
     echo "
 
 *****
-ERROR: File PASSWORD is missing.
-Create a file called PASSWORD in the website root directory, and put the sftp
-password in that file. No spaces. No newlines.
+ERROR: File PASSWORD or file TEAM is missing.
+Create 2 files in the website root directory, one named PASSWORD and another
+named TEAM, and put the sftp password and senior design team name in these
+files, respectively. No spaces. No newlines.
 (The SFTP password was given to us in an email. Just search 'sftp password' in
-your CyMail and it will probably be first result.)
+your CyMail and it will probably be first result. The senior design team
+name is something like mayXXXX or decXXXX)
 *****
 
 "
     exit 1
 fi
 
+TEAM=$(cat TEAM)
 PASSWORD=$(cat PASSWORD)
+HOST=$TEAM.sd.ece.iastate.edu
+USERNAME=$TEAM
 
 chmod -R 755 output || exit 1
 #cd output || exit 1