|
|
@ -4,16 +4,19 @@ |
|
|
|
{% block content %} |
|
|
|
|
|
|
|
<style> |
|
|
|
.input {background-color:aliceblue; padding: 0.5em; margin:1em 0 1em 0;} |
|
|
|
|
|
|
|
input[type="number"] { min-width: 50px;} |
|
|
|
#choice {width:20em;float:left;margin-left:1em;margin-right:2em;} |
|
|
|
#filter {width:20em;margin-left:1em;margin-right:2em;} |
|
|
|
#choice { width:20em; float:left; margin-left:1em; margin-right:2em; } |
|
|
|
#filter { width:20em; margin-left:1em; margin-right:2em; } |
|
|
|
.formular { |
|
|
|
background-color:beige; |
|
|
|
border: rgb(83, 68, 68) 1px solid; |
|
|
|
background-color:#ffc80c; |
|
|
|
width:40em; |
|
|
|
height:12em; |
|
|
|
margin-top:3em;} |
|
|
|
height:15em; |
|
|
|
margin-top:3em; |
|
|
|
padding: 1em; |
|
|
|
border-radius: 15px 15px 15px 15px; |
|
|
|
} |
|
|
|
.btn { margin: 0.5em 0 1em 1em; } |
|
|
|
</style> |
|
|
|
|
|
|
|
<script> |
|
|
@ -48,13 +51,28 @@ an, in dem Klimaneutralität erreicht werden soll. |
|
|
|
<div class="formular"> |
|
|
|
<form method="post" action="/view" autocomplete="off"> |
|
|
|
{% csrf_token %} |
|
|
|
<input type="text" id="filter" placeholder="Stadt eingeben ..." autocomplete="off"> |
|
|
|
<input type="text" id="filter" placeholder="Stadt eingeben ..." autocomplete="off" required='required'> |
|
|
|
<select id="choice" name="choice" size=6></select> |
|
|
|
<input type="number" name="targetyear" min='2025' max='2050' required='required' placeholder="Zieljahr" > |
|
|
|
<input class='button btn-primary' type="submit" value="Abschicken"> |
|
|
|
<!-- input type="number" name="targetyear" min='2025' max='2050' required='required' placeholder="Zieljahr" --> |
|
|
|
Jahr bis Klimaneutralität |
|
|
|
<select class="browser-default" name="targetyear" required> |
|
|
|
<option>2030</option> |
|
|
|
<option>2031</option> |
|
|
|
<option>2032</option> |
|
|
|
<option>2033</option> |
|
|
|
<option>2034</option> |
|
|
|
<option>2035</option> |
|
|
|
<option>2036</option> |
|
|
|
<option>2037</option> |
|
|
|
<option>2038</option> |
|
|
|
<option>2039</option> |
|
|
|
<option>2040</option> |
|
|
|
</select> |
|
|
|
<br style="clear:both;"> |
|
|
|
<input class='btn btn-primary' type="submit" value="Abschicken"> |
|
|
|
</form> |
|
|
|
</div> |
|
|
|
<br style="clear:both;"> |
|
|
|
|
|
|
|
|
|
|
|
<hr> |
|
|
|
|
|
|
|