summaryrefslogtreecommitdiffstats
path: root/pages/Login.n.xml
diff options
context:
space:
mode:
authorneoraider <devnull@localhost>2006-04-18 01:17:05 +0200
committerneoraider <devnull@localhost>2006-04-18 01:17:05 +0200
commite7359ccf2db89b1feec820d1c97583f720ae0d7a (patch)
tree4321a817497f064457c184364a9a2745bf5bd629 /pages/Login.n.xml
parent1a78cfbd3315897aa84b7a5d6735d54d94a590a1 (diff)
downloadneon-e7359ccf2db89b1feec820d1c97583f720ae0d7a.tar
neon-e7359ccf2db89b1feec820d1c97583f720ae0d7a.zip
Seiten verschoben.
Diffstat (limited to 'pages/Login.n.xml')
-rw-r--r--pages/Login.n.xml43
1 files changed, 0 insertions, 43 deletions
diff --git a/pages/Login.n.xml b/pages/Login.n.xml
deleted file mode 100644
index 71fb2b3..0000000
--- a/pages/Login.n.xml
+++ /dev/null
@@ -1,43 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" ?>
-<page>
- <info>
- <name>Login</name>
- <template>phpexec</template>
- <access>1:0</access>
- <type>n</type>
- </info>
- <data>
- <code>
- <![CDATA[
-<?PHP
- if(!$GLOBALS['user']->uid) {
- require_once('code/user.inc.php');
- require_once('code/links.inc.php');
- require_once('code/util.inc.php');
-
- echo '<form action="';
- echo $GLOBALS['links']->GetNeonLink('Login');
- echo '" method="post">';
- ?>
- <div class="login">
- User:<br />
- <input type="text" name="name" /><br />
- Passwort:<br />
- <input type="password" name="password" /><br />
- <input type="hidden" name="page" value="<?PHP
- if($_POST['page']) echo Unquote($_POST['page']);
- else echo $GLOBALS['page'];
- ?>" />
- <div class="login_submit">
- <input type="submit" value="Login" />
-
- </div>
- </div>
-</form>
-<?PHP
- }
-?>
- ]]>
- </code>
- </data>
-</page>