-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathError403.py
More file actions
39 lines (29 loc) · 1.01 KB
/
Error403.py
File metadata and controls
39 lines (29 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
###########################################################
#
# Copyright (c) 2005, Southpaw Technology
# All Rights Reserved
#
# PROPRIETARY INFORMATION. This software is proprietary to
# Southpaw Technology, and is not to be reproduced, transmitted,
# or disclosed in any way without written permission.
#
#
#
from pyasm.web import AppServer
# DEPRECATED
class Error403(AppServer):
def get_page_widget(my):
return("""
<html>
<head><title>Error 403</title>
<body style="color:black;background-color:white;font-size:12pt;font-family:sans-serif;padding:16pt">
<div style="text-align: left">
<img src="/context/icons/logo/sthpw_logo_120.png"/>
<h1 style="color:#008">Error 403</h1>
<h2 style="color:#C00">Permission Denied</h2>
<p style="padding:2ex 0pt; border-style:solid none;border-width:thin;border-color:black">You do not have permission to view this page.</p>
<p style="color:#008;font-size:smaller;font-weight:bold">Tactic Application Server</p>
</div>
</body>
</html>
""")