aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-01-10 14:14:46 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-01-10 14:14:46 +0100
commit1eee43a53e729e75a298574037e1c4e51415899c (patch)
tree62a4f2c4cb710dc0fe8446c6780de8f576626d5f /source
parentYou can now change your password form the /management page. (diff)
downloadnewspipe-1eee43a53e729e75a298574037e1c4e51415899c.tar.gz
newspipe-1eee43a53e729e75a298574037e1c4e51415899c.tar.bz2
newspipe-1eee43a53e729e75a298574037e1c4e51415899c.zip
Improvements to the /management page (title hierarchy + password input with hiden characters).
Diffstat (limited to 'source')
-rw-r--r--source/templates/management.html7
1 files changed, 4 insertions, 3 deletions
diff --git a/source/templates/management.html b/source/templates/management.html
index 1f159ede..38318d7c 100644
--- a/source/templates/management.html
+++ b/source/templates/management.html
@@ -1,14 +1,15 @@
## management.html
<%inherit file="base.html"/>
<div class="left inner">
- <h1>Add Feeds</h1>
+ <h1>Subscriptions</h1>
+ <h3>Add Feeds</h3>
<form method=get action="/add_feed/">
<input type="url" name="url" placeholder="URL of a site" maxlength=2048 autocomplete="off">
<input type="submit" value="OK">
</form>
%if feeds:
- <h1>Delete Feeds</h1>
+ <h3>Delete Feeds</h3>
<form method=get action="/remove_feed/">
<select name="feed_id">
%for feed in feeds:
@@ -34,7 +35,7 @@
<h1>Account</h1>
<form method=get action="/change_password/">
- Change your password: <input type="text" name="new_password" value="" />
+ <input type="password" name="new_password" value="" placeholder="Enter a new password." />
</form>
<hr />
bgstack15