Added SubmitPanel, HelpPanel for PlanetLab and VINI
[sfa-gui.git] / Welcome.py
diff --git a/Welcome.py b/Welcome.py
new file mode 100644 (file)
index 0000000..3c7d664
--- /dev/null
@@ -0,0 +1,20 @@
+from Sink import Sink, SinkInfo
+from pyjamas.ui.HTML import HTML
+
+class Welcome(Sink):
+    def __init__(self):
+
+        Sink.__init__(self)
+
+        text="<div class='infoProse'>This is the SFA Federation GUI. "
+        text+="It allows users to manage their SFA identities and slices, "
+        text+="add resources from various testbeds to their slices, "
+        text+="and browse the SFA Registry.</p></div>"
+        self.initWidget(HTML(text, True))
+
+    def onShow(self):
+        pass
+
+
+def init():
+    return SinkInfo("Welcome", "Welcome to the SFA Federation GUI", Welcome)