1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-02-10 16:01:33 +00:00

make xml import/export tools look cuter

This commit is contained in:
Andrew Dolgov
2005-12-02 09:19:14 +01:00
parent db22a6e9b8
commit 648cbec886
3 changed files with 34 additions and 8 deletions

View File

@@ -130,11 +130,19 @@
?>
<html>
<head>
<title>XML Import</title>
<link rel="stylesheet" href="opml.css" type="text/css">
</head>
<body>
<h1><img src="images/ttrss_logo.png"></h1>
<? if ($_REQUEST["op"] != "Import") { ?>
<h1>Import XMLDB (your login is <?= $_SESSION["name"] ?>)</h1>
<div class="opmlBody">
<h2>Import XMLDB</h2>
<form enctype="multipart/form-data" method="POST" action="xml-import.php">
File: <input name="xmldb" type="file">&nbsp;
@@ -143,7 +151,7 @@
<? } else {
print "<h1>Importing data (your login is ".$_SESSION["name"].")</h1>";
print "<h2>Importing data</h2>";
if (is_file($_FILES['xmldb']['tmp_name'])) {
$dom = domxml_open_file($_FILES['xmldb']['tmp_name']);
@@ -180,6 +188,7 @@
}
} ?>
</div>
</body>
</html>