summaryrefslogtreecommitdiff
path: root/login.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-11-18 03:50:47 +0100
committerAndrew Dolgov <[email protected]>2005-11-18 03:50:47 +0100
commit46a1969d75faabb9b941287b3de3e6a6de782feb (patch)
tree0c0504a12c50c9f197e8a2d984e554940f8c8ba9 /login.php
parentf1cdb8c642efda0087356b21a5426372258f3fa1 (diff)
actually add login.php
Diffstat (limited to 'login.php')
-rw-r--r--login.php42
1 files changed, 42 insertions, 0 deletions
diff --git a/login.php b/login.php
new file mode 100644
index 000000000..10875ce87
--- /dev/null
+++ b/login.php
@@ -0,0 +1,42 @@
+<?
+ session_start();
+
+ require_once "version.php";
+ require_once "config.php";
+
+ $_SESSION["uid"] = PLACEHOLDER_UID; // FIXME: placeholder
+ $_SESSION["name"] = PLACEHOLDER_NAME;
+
+?>
+<html>
+<head>
+ <title>Tiny Tiny RSS : Login</title>
+ <link rel="stylesheet" type="text/css" href="tt-rss.css">
+ <!--[if gte IE 5.5000]>
+ <script type="text/javascript" src="pngfix.js"></script>
+ <![endif]-->
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+</head>
+
+<body>
+
+<table width='100%' height='100%' class="loginForm">
+
+ <tr><td align='center' valign='middle'>
+
+ <table class="innerLoginForm">
+
+ <tr><td valign="middle" align="center" colspan="2">
+ <img src="images/ttrss_logo.png" alt="logo">
+ </td></tr>
+
+ <tr><td align="right">Login:</td>
+ <td><input name="login"></td></tr>
+ <tr><td align="right">Password:</td>
+ <td><input type="password" name="password"></td></tr>
+
+ </table></td></tr>
+</table>
+
+</body>
+</html>