]> git.wh0rd.org - tt-rss.git/commitdiff
various utility.css updates
authorAndrew Dolgov <fox@fakecake.org>
Wed, 27 Mar 2013 15:40:49 +0000 (19:40 +0400)
committerAndrew Dolgov <fox@fakecake.org>
Wed, 27 Mar 2013 15:40:49 +0000 (19:40 +0400)
classes/handler/public.php
install/index.php
utility.css

index 1efaa0430404457d2a75873d7f80e73383455ba5..94938e5480f90da6902aa4fdf3e403ab01254d73 100644 (file)
@@ -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) {
index 1b5def331e808109bd59d0174d0cee948b4d984c..9855bac7521f7131e7e333b767a55e4d02f51f7a 100644 (file)
 
 <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>
 
 <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>
 
 
index 89a6e71d16bca338dd729f684f53cb3def2e7204..237603a58238e45b578e6f1c9dd5096e0c208701 100644 (file)
@@ -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 {