diff --git a/iTrust/WebRoot/WEB-INF/web.xml b/iTrust/WebRoot/WEB-INF/web.xml
index aa258d6cab4e7c258a1c7429be34407b3ad79c4a..7966ebc7be34ad02d8e3c21af015fadebdd5c4ec 100644
--- a/iTrust/WebRoot/WEB-INF/web.xml
+++ b/iTrust/WebRoot/WEB-INF/web.xml
@@ -246,10 +246,12 @@
 			</web-resource-name>
 			<!-- Define the context-relative URL(s) to be protected -->
 			<url-pattern>/auth/admin/*</url-pattern>
+			<url-pattern>/auth/tester/*</url-pattern>
 		</web-resource-collection>
 		<auth-constraint>
 			<!-- Anyone with one of the listed roles may access this area -->
 			<role-name>admin</role-name>
+			<role-name>tester</role-name>
 		</auth-constraint>
 	</security-constraint>
 
diff --git a/iTrust/WebRoot/auth/admin/menu.jsp b/iTrust/WebRoot/auth/admin/menu.jsp
index 8ceae79a1302faa8fccc2e741e3f7826896e26a0..72d4d82f4aafb8ef30a24a6753483598d4595696 100644
--- a/iTrust/WebRoot/auth/admin/menu.jsp
+++ b/iTrust/WebRoot/auth/admin/menu.jsp
@@ -44,6 +44,7 @@
 			<li><a href="/iTrust/auth/admin/sessionTimeout.jsp">Change Global Session Timeout </a></li>
 			<li><a href="/iTrust/auth/surveyResults.jsp">Satisfaction Survey Results</a></li>
 			<li><a href="/iTrust/auth/admin/activatePatient.jsp">Activate Patient</a></li>
+			<li><a href="/iTrust/auth/admin/viewTransactionLogs.jsp">View Transaction Logs</a></li>
 		</ul>
 	</div>
 </div>
\ No newline at end of file
diff --git a/iTrust/WebRoot/auth/tester/menu.jsp b/iTrust/WebRoot/auth/tester/menu.jsp
index 4333be9eb3ec2de480370398a7715db0fceea7fb..f243696898823a94d27ff87043d55926bbf97efc 100644
--- a/iTrust/WebRoot/auth/tester/menu.jsp
+++ b/iTrust/WebRoot/auth/tester/menu.jsp
@@ -5,6 +5,7 @@
 	<div class="panel-body" id="view-menu">
 		<ul class="nav nav-sidebar">
 			<li><a href="/iTrust/auth/tester/home.jsp">Operational Profile</a></li>
+			<li><a href="/iTrust/auth/admin/viewTransactionLogs.jsp">View Transaction Logs</a></li>
 		</ul>
 	</div>
 </div>
\ No newline at end of file