Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Bartel2013-09-13 02:13:47 +0000
committerJan Bartel2013-09-13 02:13:47 +0000
commit0b80b9ba36000ea17a72a1691117b20b41097ff8 (patch)
tree528f08a32ce7a17c1a5a76bea8057b69066ef71c /tests/test-webapps
parent0e981d8d98e2ca813554c0170b7d4aed530287f4 (diff)
downloadorg.eclipse.jetty.project-0b80b9ba36000ea17a72a1691117b20b41097ff8.tar.gz
org.eclipse.jetty.project-0b80b9ba36000ea17a72a1691117b20b41097ff8.tar.xz
org.eclipse.jetty.project-0b80b9ba36000ea17a72a1691117b20b41097ff8.zip
417110 Demo / html body end tag missing in authfail.html
Diffstat (limited to 'tests/test-webapps')
-rw-r--r--tests/test-webapps/test-servlet-spec/test-spec-webapp/src/main/webapp/authfail.html6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/test-webapps/test-servlet-spec/test-spec-webapp/src/main/webapp/authfail.html b/tests/test-webapps/test-servlet-spec/test-spec-webapp/src/main/webapp/authfail.html
index 17dc9670a5..914a42fa28 100644
--- a/tests/test-webapps/test-servlet-spec/test-spec-webapp/src/main/webapp/authfail.html
+++ b/tests/test-webapps/test-servlet-spec/test-spec-webapp/src/main/webapp/authfail.html
@@ -1,6 +1,10 @@
<html>
- <head><title>Authentication Failure</title</head>
+ <head>
+ <title>Authentication Failure</title>
+ <link rel="stylesheet" type="text/css" href="stylesheet.css"/>
+ </head>
<body>
<h1>Authentication Failure</h1>
<p>Sorry, either your login or password were incorrect, please try again.</p>
+ </body>
</html>

Back to the top