summaryrefslogtreecommitdiff
path: root/classes
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2019-02-19 14:59:29 +0300
committerAndrew Dolgov <[email protected]>2019-02-19 14:59:29 +0300
commitc11f32ac388fd1ac2f7402572db7afad04cd5ce4 (patch)
tree9130910b23d3bf7202e1819a0acf64d22f0cc8d4 /classes
parent4f720f906e1a598d3c18f3de96bca00fa2464549 (diff)
center and rework some utility screens
Diffstat (limited to 'classes')
-rwxr-xr-xclasses/handler/public.php39
-rw-r--r--classes/opml.php1
-rw-r--r--classes/pref/users.php34
3 files changed, 43 insertions, 31 deletions
diff --git a/classes/handler/public.php b/classes/handler/public.php
index 235aba3c6..aaeee8219 100755
--- a/classes/handler/public.php
+++ b/classes/handler/public.php
@@ -781,9 +781,8 @@ class Handler_Public extends Handler {
</head>
<body class='claro ttrss_utility'>
- <img class=\"floatingLogo\" src=\"images/logo_small.png\"
- alt=\"Tiny Tiny RSS\"/>
- <h1>".__("Subscribe to feed...")."</h1><div class='content'>";
+ <div class=\"container\">
+ <h1>".__("Subscribe to feed...")."</h1><div class='content'>";
$rc = Feeds::subscribe_to_feed($feed_url);
@@ -858,7 +857,7 @@ class Handler_Public extends Handler {
<input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
</form></p>";
- print "</div></body></html>";
+ print "</div></div></body></html>";
} else {
render_login_form();
@@ -885,9 +884,8 @@ class Handler_Public extends Handler {
echo javascript_tag("lib/prototype.js");
print "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>
- </head><body class='claro ttrss_utility'>";
+ </head><body class='claro ttrss_utility'><div class='container'>";
- print '<div class="floatingLogo"><img src="images/logo_small.png"></div>';
print "<h1>".__("Password recovery")."</h1>";
print "<div class='content'>";
@@ -928,12 +926,14 @@ class Handler_Public extends Handler {
print_error("Some of the information provided is missing or incorrect.");
}
+ print "<hr/>";
+
print "<form method=\"GET\" action=\"index.php\">
<input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
</form>";
} else if (!$method) {
- print_notice(__("You will need to provide valid account name and email. A password reset link will be sent to your email address."));
+ print_notice(__("You will need to provide valid account name and email. Password reset link will be sent to your email address."));
print "<form method='POST' action='public.php'>";
print "<input type='hidden' name='method' value='do'>";
@@ -954,8 +954,10 @@ class Handler_Public extends Handler {
print "<input class='input input-text' type='text' name='test' value='' required>";
print "</fieldset>";
- print "<p/>";
+ print "<hr/>";
+ print "<fieldset>";
print "<button type='submit'>".__("Reset password")."</button>";
+ print "</fieldset>";
print "</form>";
} else if ($method == 'do') {
@@ -974,13 +976,13 @@ class Handler_Public extends Handler {
} else {
- print_notice("Password reset instructions are being sent to your email address.");
-
$sth = $this->pdo->prepare("SELECT id FROM ttrss_users
WHERE login = ? AND email = ?");
$sth->execute([$login, $email]);
if ($row = $sth->fetch()) {
+ print_notice("Password reset instructions are being sent to your email address.");
+
$id = $row["id"];
if ($id) {
@@ -1029,6 +1031,8 @@ class Handler_Public extends Handler {
print_error("User ID not found.");
}
+ print "<hr/>";
+
print "<form method=\"GET\" action=\"index.php\">
<input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
</form>";
@@ -1036,6 +1040,8 @@ class Handler_Public extends Handler {
} else {
print_error(__("Sorry, login and email combination not found."));
+ print "<hr/>";
+
print "<form method=\"GET\" action=\"public.php\">
<input type=\"hidden\" name=\"op\" value=\"forgotpass\">
<input type=\"submit\" value=\"".__("Go back")."\">
@@ -1047,6 +1053,7 @@ class Handler_Public extends Handler {
}
print "</div>";
+ print "</div>";
print "</body>";
print "</html>";
@@ -1065,7 +1072,7 @@ class Handler_Public extends Handler {
<head>
<title>Database Updater</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
- <link rel="stylesheet" type="text/css" href="css/default.css"/>
+ <?php echo stylesheet_tag("css/default.css") ?>
<link rel=\"shortcut icon\" type=\"image/png\" href=\"images/favicon.png\">
<link rel=\"icon\" type=\"image/png\" sizes=\"72x72\" href=\"images/favicon-72px.png\">
</head>
@@ -1080,8 +1087,7 @@ class Handler_Public extends Handler {
}
</script>
- <div class="floatingLogo"><img src="images/logo_small.png"></div>
-
+ <div class="container">
<h1><?php echo __("Database Updater") ?></h1>
<div class="content">
@@ -1122,6 +1128,8 @@ class Handler_Public extends Handler {
print_notice("Your Tiny Tiny RSS database is now updated to the latest version.");
+ print "<hr/>";
+
print "<p><form method=\"GET\" action=\"index.php\">
<input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
</form>";
@@ -1129,6 +1137,8 @@ class Handler_Public extends Handler {
} else {
print "<h2>Your database is up to date.</h2>";
+ print "<hr/>";
+
print "<p><form method=\"GET\" action=\"index.php\">
<input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
</form>";
@@ -1154,6 +1164,8 @@ class Handler_Public extends Handler {
print_notice("Tiny Tiny RSS database is up to date.");
+ print "<hr/>";
+
print "<p><form method=\"GET\" action=\"index.php\">
<input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
</form>";
@@ -1163,6 +1175,7 @@ class Handler_Public extends Handler {
?>
</div>
+ </div>
</body>
</html>
<?php
diff --git a/classes/opml.php b/classes/opml.php
index 1b1897e7d..fe43a096c 100644
--- a/classes/opml.php
+++ b/classes/opml.php
@@ -29,7 +29,6 @@ class Opml extends Handler_Protected {
<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>
</head>
<body class='claro ttrss_utility'>
- <div class=\"floatingLogo\"><img src=\"images/logo_small.png\"></div>
<h1>".__('OPML Utility')."</h1><div class='content'>";
add_feed_category("Imported feeds");
diff --git a/classes/pref/users.php b/classes/pref/users.php
index 206dc34d5..f7786eae0 100644
--- a/classes/pref/users.php
+++ b/classes/pref/users.php
@@ -283,35 +283,35 @@ class Pref_Users extends Handler_Protected {
$sth->execute([$pwd_hash, $new_salt, $uid]);
if ($show_password) {
- print T_sprintf("Changed password of user %s to %s", $login, $tmp_user_pwd);
+ print_notice(T_sprintf("Changed password of user %s to %s", $login, $tmp_user_pwd));
} else {
print_notice(T_sprintf("Sending new password of user %s to %s", $login, $email));
- }
- if ($email) {
- require_once "lib/MiniTemplator.class.php";
+ if ($email) {
+ require_once "lib/MiniTemplator.class.php";
- $tpl = new MiniTemplator;
+ $tpl = new MiniTemplator;
- $tpl->readTemplateFromFile("templates/resetpass_template.txt");
+ $tpl->readTemplateFromFile("templates/resetpass_template.txt");
- $tpl->setVariable('LOGIN', $login);
- $tpl->setVariable('NEWPASS', $tmp_user_pwd);
+ $tpl->setVariable('LOGIN', $login);
+ $tpl->setVariable('NEWPASS', $tmp_user_pwd);
- $tpl->addBlock('message');
+ $tpl->addBlock('message');
- $message = "";
+ $message = "";
- $tpl->generateOutputToString($message);
+ $tpl->generateOutputToString($message);
- $mailer = new Mailer();
+ $mailer = new Mailer();
- $rc = $mailer->mail(["to_name" => $login,
- "to_address" => $email,
- "subject" => __("[tt-rss] Password change notification"),
- "message" => $message]);
+ $rc = $mailer->mail(["to_name" => $login,
+ "to_address" => $email,
+ "subject" => __("[tt-rss] Password change notification"),
+ "message" => $message]);
- if (!$rc) print_error($mailer->error());
+ if (!$rc) print_error($mailer->error());
+ }
}
}