actually add login.php
This commit is contained in:
parent
f1cdb8c642
commit
46a1969d75
1 changed files with 42 additions and 0 deletions
42
login.php
Normal file
42
login.php
Normal file
|
@ -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>
|
Loading…
Reference in a new issue