Added Aspect logo.

git-svn-id: http://webgoat.googlecode.com/svn/trunk@93 4033779f-a91e-0410-96ef-6bf7bf53c507
This commit is contained in:
esheri3 2007-01-25 20:20:51 +00:00
parent b2f13da6c4
commit 90f78d3730
2 changed files with 10 additions and 2 deletions

View File

@ -55,7 +55,7 @@ import org.owasp.webgoat.session.WebSession;
public class ForgotPassword extends LessonAdapter
{
final static IMG ASPECT_LOGO = new IMG("images/logos/aspect.jpg").setAlt("Aspect Security").setBorder(0).setHspace(0).setVspace(0);
public final static IMG ASPECT_LOGO = new IMG("images/logos/aspect.jpg").setAlt("Aspect Security").setBorder(0).setHspace(0).setVspace(0);
private final static String USERNAME = "Username";
@ -332,6 +332,6 @@ public class ForgotPassword extends LessonAdapter
public Element getCredits()
{
return super.getCustomCredits("Eric Sheridan ", ASPECT_LOGO);
return super.getCustomCredits("", ASPECT_LOGO);
}
}

View File

@ -11,6 +11,7 @@ import org.apache.ecs.Element;
import org.apache.ecs.ElementContainer;
import org.apache.ecs.StringElement;
import org.apache.ecs.html.Form;
import org.apache.ecs.html.IMG;
import org.apache.ecs.html.Input;
import org.apache.ecs.html.TD;
import org.apache.ecs.html.TR;
@ -49,6 +50,8 @@ import sun.misc.BASE64Encoder;
*/
public class HttpOnly extends LessonAdapter {
public final static IMG ASPECT_LOGO = new IMG("images/logos/aspect.jpg").setAlt("Aspect Security").setBorder(0).setHspace(0).setVspace(0);
private final static Integer DEFAULT_RANKING = new Integer(125);
private final static String UNIQUE2U = "unique2u";
@ -425,4 +428,9 @@ public class HttpOnly extends LessonAdapter {
return result;
}
public Element getCredits()
{
return super.getCustomCredits("", ASPECT_LOGO);
}
}