summaryrefslogtreecommitdiffstats
path: root/module/web/templates
diff options
context:
space:
mode:
authorGravatar Wugy <wugy@mally-soft.com> 2010-04-27 21:14:15 +0200
committerGravatar Wugy <wugy@mally-soft.com> 2010-04-27 21:14:15 +0200
commit431e8cca254ff62aea4f569ef05363ff7d44f593 (patch)
tree1007262ec66020c34e7d94335912df4f081ac41c /module/web/templates
parentMakedirs Fix (diff)
downloadpyload-431e8cca254ff62aea4f569ef05363ff7d44f593.tar.xz
Some design modifications
Diffstat (limited to 'module/web/templates')
-rw-r--r--module/web/templates/default/login.html6
-rw-r--r--module/web/templates/default/settings.html10
2 files changed, 7 insertions, 9 deletions
diff --git a/module/web/templates/default/login.html b/module/web/templates/default/login.html
index 2f93e5aab..f4b0a5560 100644
--- a/module/web/templates/default/login.html
+++ b/module/web/templates/default/login.html
@@ -11,12 +11,12 @@
<input type="hidden" name="do" value="login" />
<fieldset>
<legend>Login</legend>
- <label class="block" for="focus__this">
+ <label>
<span>{% trans "Username" %}</span>
{{ form.username }}
</label>
<br />
- <label class="block">
+ <label>
<span>{% trans "Password" %}</span>
{{ form.password }}
</label>
@@ -33,4 +33,4 @@
</div>
<br>
-{% endblock %} \ No newline at end of file
+{% endblock %}
diff --git a/module/web/templates/default/settings.html b/module/web/templates/default/settings.html
index b131df92f..b0260cec5 100644
--- a/module/web/templates/default/settings.html
+++ b/module/web/templates/default/settings.html
@@ -35,10 +35,8 @@
{% for skey, section in conf.items %}
- <fieldset>
- <legend style="font-size:0.8cm;color:darkblue;background-color:lightgrey;round">
- {{section.name}}
- </legend>
+ <h2>{{section.name}}</h2>
+
{% for okey, option in section.options.items %}
<label for="{{skey}}|{{okey}}" style="color:#424242;">
@@ -61,7 +59,7 @@
{% endifequal %}
</label>
{% endfor %}
- </fieldset>
+ <br /><br /><br /><br />
{% endfor %}
{% if conf %}
<input class="submit" type="submit" value="{% trans "Submit" %}" />
@@ -70,4 +68,4 @@
</form>
-{% endblock %} \ No newline at end of file
+{% endblock %}