aboutsummaryrefslogtreecommitdiff
path: root/source/templates/management.html
diff options
context:
space:
mode:
Diffstat (limited to 'source/templates/management.html')
-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