summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--opml.css8
-rw-r--r--xml-export.php21
-rw-r--r--xml-import.php13
3 files changed, 34 insertions, 8 deletions
diff --git a/opml.css b/opml.css
index 89f08d0ff..a061a73af 100644
--- a/opml.css
+++ b/opml.css
@@ -19,6 +19,14 @@ h1 {
background-repeat : repeat-x;
}
+h2 {
+ font-size : 14pt;
+ font-weight : bold;
+ border-width : 0px 0px 1px 0px;
+ border-style : solid;
+ border-color : #e0e0e0;
+}
+
div.opmlBody {
margin : 30px;
}
diff --git a/xml-export.php b/xml-export.php
index f1100d39b..446d315a0 100644
--- a/xml-export.php
+++ b/xml-export.php
@@ -15,13 +15,22 @@
<? if (!$_GET["export"]) { ?>
<html>
+<head>
+ <title>XML Export</title>
+ <link rel="stylesheet" href="opml.css" type="text/css">
+</head>
<body>
-<h1>XML Export</h1>
-<form method="GET">
-<input type="checkbox" checked name="marked"> Export only starred<br>
-<input type="checkbox" name="unread"> Export only unread<br>
-<p><input type="submit" name="export" value="Export"></p>
-</form>
+<h1><img src="images/ttrss_logo.png"></h1>
+
+<div class="opmlBody">
+ <h2>XML Export</h2>
+ <form method="GET">
+ Limit to: <input type="checkbox" checked name="marked"> starred,
+ <input type="checkbox" name="unread"> unread.<br>
+ <p><input type="submit" class="button" name="export" value="Export"></p>
+ </form>
+</div>
+
</body>
</html>
diff --git a/xml-import.php b/xml-import.php
index 04f3ee39e..4b1cd1bc1 100644
--- a/xml-import.php
+++ b/xml-import.php
@@ -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>