various utility.css updates
This commit is contained in:
parent
8c82001ba0
commit
00df2b5f91
|
@ -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) {
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
||||
|
|
12
utility.css
12
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 {
|
||||
|
|
Loading…
Reference in New Issue