summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-03-27 19:40:49 +0400
committerAndrew Dolgov <[email protected]>2013-03-27 19:40:49 +0400
commit00df2b5f91b18f09096b54fed9c03769de1e1f9f (patch)
tree5140d2915cad227ef39a4bed49f8499224c676af
parent8c82001ba06b2ee793de78fe120357c8343437f6 (diff)
various utility.css updates
-rw-r--r--classes/handler/public.php2
-rw-r--r--install/index.php4
-rw-r--r--utility.css12
3 files changed, 14 insertions, 4 deletions
diff --git a/classes/handler/public.php b/classes/handler/public.php
index 1efaa0430..94938e548 100644
--- a/classes/handler/public.php
+++ b/classes/handler/public.php
@@ -724,6 +724,8 @@ class Handler_Public extends Handler {
print "<h1>".__("Reset password")."</h1>";
print "<div class='content'>";
+ print "<p>".__("You will need to provide valid account name and email. New password will be sent on your email address.")."</p>";
+
@$method = $_POST['method'];
if (!$method) {
diff --git a/install/index.php b/install/index.php
index 1b5def331..9855bac75 100644
--- a/install/index.php
+++ b/install/index.php
@@ -209,7 +209,7 @@
<fieldset>
<label>Port</label>
- <input name="DB_PORT" placeholder="if needed, PgSQL only" size="20" value="<?php echo $DB_PORT ?>"/>
+ <input name="DB_PORT" type="number" placeholder="if needed, PgSQL only" size="20" value="<?php echo $DB_PORT ?>"/>
</fieldset>
<h2>Other settings</h2>
@@ -218,7 +218,7 @@
<fieldset>
<label>Tiny Tiny RSS URL</label>
- <input name="SELF_URL_PATH" placeholder="<?php echo $SELF_URL_PATH; ?>" size="60" value="<?php echo $SELF_URL_PATH ?>"/>
+ <input type="url" name="SELF_URL_PATH" placeholder="<?php echo $SELF_URL_PATH; ?>" size="60" value="<?php echo $SELF_URL_PATH ?>"/>
</fieldset>
diff --git a/utility.css b/utility.css
index 89a6e71d1..237603a58 100644
--- a/utility.css
+++ b/utility.css
@@ -1,9 +1,17 @@
body {
- margin : 20px;
- padding : 0px;
font-family : sans-serif;
font-size : 12px;
+ background : #eee;
+ margin-left : auto;
+ margin-right : auto;
+ max-width : 800px;
+}
+
+div.content {
background : white;
+ border : 1px solid #ccc;
+ padding : 10px;
+ box-shadow : 0px 0px 2px #ccc;
}
p.warning {