diff options
Diffstat (limited to 'rt/webrt/NoAuth')
-rwxr-xr-x | rt/webrt/NoAuth/Logout.html | 22 | ||||
-rwxr-xr-x | rt/webrt/NoAuth/Reminder.html | 3 | ||||
-rw-r--r-- | rt/webrt/NoAuth/images/rt.jpg | bin | 0 -> 917 bytes | |||
-rw-r--r-- | rt/webrt/NoAuth/images/spacer.gif | bin | 0 -> 43 bytes | |||
-rwxr-xr-x | rt/webrt/NoAuth/webrt.css | 102 |
5 files changed, 127 insertions, 0 deletions
diff --git a/rt/webrt/NoAuth/Logout.html b/rt/webrt/NoAuth/Logout.html new file mode 100755 index 000000000..a00ae9675 --- /dev/null +++ b/rt/webrt/NoAuth/Logout.html @@ -0,0 +1,22 @@ +<HTML> +<HEAD> +<TITLE>RT: Logout</TITLE> + <META HTTP-EQUIV="Refresh" CONTENT="0;URL=<%$RT::WebPath%>/"> +</HEAD> +<BODY> +<p>You have been logged out of RT. + + +<br> +<br> +<A HREF="<%$RT::WebPath%>/">You're welcome to login again</a> + + +<%PERL> +if (defined %session) { + %session = undef; +} +$m->abort(); +</%PERL> + + diff --git a/rt/webrt/NoAuth/Reminder.html b/rt/webrt/NoAuth/Reminder.html new file mode 100755 index 000000000..a814a912f --- /dev/null +++ b/rt/webrt/NoAuth/Reminder.html @@ -0,0 +1,3 @@ +<& /Elements/Header, title => 'Password Reminder' &> + +Not yet implemented. diff --git a/rt/webrt/NoAuth/images/rt.jpg b/rt/webrt/NoAuth/images/rt.jpg Binary files differnew file mode 100644 index 000000000..a137a932b --- /dev/null +++ b/rt/webrt/NoAuth/images/rt.jpg diff --git a/rt/webrt/NoAuth/images/spacer.gif b/rt/webrt/NoAuth/images/spacer.gif Binary files differnew file mode 100644 index 000000000..5bfd67a2d --- /dev/null +++ b/rt/webrt/NoAuth/images/spacer.gif diff --git a/rt/webrt/NoAuth/webrt.css b/rt/webrt/NoAuth/webrt.css new file mode 100755 index 000000000..a71d05720 --- /dev/null +++ b/rt/webrt/NoAuth/webrt.css @@ -0,0 +1,102 @@ +BODY, TD {font-family: Helvetica, Arial, sans-serif} +TD {border-color: #cccccc } + +BLOCKQUOTE.message { + font-size: 80%; + font-family: "Helvetica", sans-serif; +} + + +BODY { + color: #000; + background: #FFFFFF; + font-family: "Helvetica", sans-serif; + + +} + +TD, TH { /* ns workaround */ + font-family: "Helvetica", sans-serif; +} + +TR.oddline { + background-color : #eeeeee; +} + +H1, H2, H3 { + margin-top: 0.2em; + color: #336699; + font-family: "Helvetica", sans-serif; + + clear: both; +} + + +DIV.endmatter { margin-left: -7% } + + + +A { font-weight: bold; + color: #000000; + /* border: none -- breaks NS 4.x */ } + +.currenttab { background-color: #cccccc; } + +.inverse { color: #ffffff; } + + + +A:link IMG, A:visited IMG { border-style: none } + +A IMG { color: white } /* The only way to hide the border in NS 4.x */ + +.hide { + display: none; + color: white; +} + +SPAN.date { font-size: 0.8em } + +SPAN.attribution { + font-weight: bold +} + +SPAN.label { font-size: 0.8em; +} + +BLOCKQUOTE { + font-style: italic; + /* color: #990; */ +} + +ADDRESS { + text-align: right; + font-weight: bold; + font-style: italic +} + +BLOCKQUOTE P { /* Try to avoid space above the attribution */ + margin-bottom: 0; +} +BLOCKQUOTE ADDRESS { + margin: 0; +} + +.motto, .motto A {font: italic 120%/1.3 Georgia, serif; color: #990} + +.emphasized { + font-weight: bold +} + +/* Why o why does this break Netscape 4.x? +IMG { + border: none +} +*/ + +P.map-also { font-style: italic; margin-left: 15%; text-align: right } + +.oddline { +background-color : #eeeeee; + +} |