summaryrefslogtreecommitdiffstats
path: root/pages/Login.xml
diff options
context:
space:
mode:
Diffstat (limited to 'pages/Login.xml')
-rw-r--r--pages/Login.xml28
1 files changed, 28 insertions, 0 deletions
diff --git a/pages/Login.xml b/pages/Login.xml
new file mode 100644
index 0000000..3eac6e6
--- /dev/null
+++ b/pages/Login.xml
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<page>
+ <info>
+ <name>Login</name>
+ <template>phpexec</template>
+ <access>1:0</access>
+ </info>
+ <data>
+ <code>
+ <![CDATA[
+<?PHP
+ Uses('user', 'links', 'util');
+
+ if($_POST['name'] && $_POST['password'] && $_POST['page']) {
+ if($GLOBALS['user']->Login(Unquote($_POST['name']), Unquote($_POST['password']))) {
+ header('Location: ' . $GLOBALS['links']->GetNeonLink($_POST['page'], null, false));
+ exit();
+ }
+ }
+
+ $title = '{{Error}}';
+
+ echo '<span class="error">{{Login failed. Username or password is wrong.}}</span>';
+?>
+ ]]>
+ </code>
+ </data>
+</page>