diff --git a/static/css/style.css b/static/css/style.css index 7a865ae7..255d24e1 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -12,7 +12,7 @@ small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertic sub{bottom:-0.25em}sup{top:-0.5em}figure{margin:1em 40px}img{border-style:none} code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}hr{box-sizing:content-box;height:0;overflow:visible} button,input,select,textarea,optgroup{font:inherit;margin:0}optgroup{font-weight:bold} -input{padding:8px;border:none;border-bottom:1px solid #ccc} +input{padding:8px;border:1px solid #ccc;border-radius:4px;height:32px} button,input{overflow:visible}button,select{text-transform:none} button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button} button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0} @@ -48,7 +48,7 @@ hr{border:0;border-top:1px solid #eee;margin:20px 0} .dc-ul{list-style-type:none;padding:0;margin:0}.dc-ul li{padding:8px 16px;border-bottom:1px solid #ddd}.dc-ul li:last-child{border-bottom:none} .dc-tooltip,.dc-display-container{position:relative}.dc-tooltip .dc-text{display:none}.dc-tooltip:hover .dc-text{display:inline-block} .dc-ripple:active{opacity:0.5}.dc-ripple{transition:opacity 0s} -.dc-input{padding:8px;border:none;border-bottom:1px solid #ccc} +.dc-input{padding:8px;border:none;border-bottom:1px solid #c2c2c2} .dc-select{padding:9px 0;width:100%;border:none;border-bottom:1px solid #ccc} .dc-dropdown-click,.dc-dropdown-hover{position:relative;display:inline-block;cursor:pointer} .dc-dropdown-hover:hover .dc-dropdown-content{display:block} diff --git a/templates/anmeldung.html b/templates/anmeldung.html index 638e6846..752b235b 100644 --- a/templates/anmeldung.html +++ b/templates/anmeldung.html @@ -4,69 +4,69 @@ {% block content %}
-

Anmeldung

+

Anmeldung

-
+
{% csrf_token %} {{ register_form.non_field_errors }}
{{ register_form.name.errors }} - -
{{ register_form.name }}
+ +
{{ register_form.name }}
{{ register_form.mail.errors }} - -
{{register_form.mail }}
+ +
{{register_form.mail }}
{{ register_form.phone.errors }} - -
{{ register_form.phone }}
+ +
{{ register_form.phone }}
{{ register_form.rate_reduced.errors }} - -
{{ register_form.rate_reduced }}
+ +
{{ register_form.rate_reduced }}
{{ register_form.address.errors }} - -
{{register_form.address }}
+ +
{{register_form.address }}
{{ register_form.birthdate.errors }} - -
{{register_form.birthdate }}
+ +
{{register_form.birthdate }}
{{ register_form.gender.errors }} - -
{{register_form.gender }}
+ +
{{register_form.gender }}
{{ register_form.food.errors }} - -
{{register_form.food }}
+ +
{{register_form.food }}
{{ register_form.music.errors }} - -
{{register_form.music }}
+ +
{{register_form.music }}
{{ register_form.cake.errors }} - -
{{register_form.cake }}
+ +
{{register_form.cake }}
{{ register_form.publish_address.errors }} - -
{{register_form.publish_address }}
+ +
{{register_form.publish_address }}
{{ register_form.publish_phone.errors }} - -
{{register_form.publish_phone }}
+ +
{{register_form.publish_phone }}
{{ register_form.info.errors }} - -
{{register_form.info }}
+ +
{{register_form.info }}
{{ register_form.message.errors }} - -
{{register_form.message }}
+ +
{{register_form.message }}
@@ -76,7 +76,7 @@
-

Hinweise

+

Hinweise

diff --git a/templates/anmeldung.html.1 b/templates/anmeldung.html.1 new file mode 100644 index 00000000..638e6846 --- /dev/null +++ b/templates/anmeldung.html.1 @@ -0,0 +1,86 @@ +{% extends 'base.html' %} +{% block title%}Anmeldung{% endblock title %} +{% include static %} +{% block content %} + +
+

Anmeldung

+
+
+
+{% csrf_token %} + +{{ register_form.non_field_errors }} +
+{{ register_form.name.errors }} + +
{{ register_form.name }}
+
+{{ register_form.mail.errors }} + +
{{register_form.mail }}
+
+{{ register_form.phone.errors }} + +
{{ register_form.phone }}
+
+{{ register_form.rate_reduced.errors }} + +
{{ register_form.rate_reduced }}
+
+{{ register_form.address.errors }} + +
{{register_form.address }}
+
+{{ register_form.birthdate.errors }} + +
{{register_form.birthdate }}
+
+{{ register_form.gender.errors }} + +
{{register_form.gender }}
+
+{{ register_form.food.errors }} + +
{{register_form.food }}
+
+{{ register_form.music.errors }} + +
{{register_form.music }}
+
+{{ register_form.cake.errors }} + +
{{register_form.cake }}
+
+{{ register_form.publish_address.errors }} + +
{{register_form.publish_address }}
+
+{{ register_form.publish_phone.errors }} + +
{{register_form.publish_phone }}
+
+{{ register_form.info.errors }} + +
{{register_form.info }}
+
+{{ register_form.message.errors }} + +
{{register_form.message }}
+ + + + + + +
+
+
+

Hinweise

+
    +
  1. +
+
+
+
+{% endblock content %}