forked from tohe/wmdeit_kaform
agree box and advancements implemented
This commit is contained in:
parent
dc88aac29c
commit
42d3126398
27
ka.php
27
ka.php
|
@ -257,6 +257,33 @@ Grund für abweichende Kontoinhabende Person"></textarea>
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|
||||||
</table>
|
</table>
|
||||||
|
</fieldset>
|
||||||
|
<br>
|
||||||
|
<fieldset>
|
||||||
|
<legend>3. Vorschuss und Sonstiges</legend>
|
||||||
|
<div class="is-row">
|
||||||
|
<div class="is-col valign="center"">
|
||||||
|
Ich habe bereits einen Vorschuss erhalten in
|
||||||
|
Höhe von:
|
||||||
|
</div>
|
||||||
|
<div class="is-col">
|
||||||
|
<input type="text" placeholder="0,00 EUR"/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<br>
|
||||||
|
|
||||||
|
<div class="is-row">
|
||||||
|
<div class="is-col valign="center"">
|
||||||
|
Ich versichere, dass ich alle Angaben
|
||||||
|
nach bestem Wissen und Gewissen gemacht habe:
|
||||||
|
</div>
|
||||||
|
<div class="is-col">
|
||||||
|
<input id="agree" type="checkbox" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</fieldset>
|
</fieldset>
|
||||||
</div>
|
</div>
|
||||||
<div class="is-col">
|
<div class="is-col">
|
||||||
|
|
|
@ -113,6 +113,8 @@ function addTableRow(){
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
var a_date = document.getElementById("a_date").value;
|
var a_date = document.getElementById("a_date").value;
|
||||||
if (!a_date.trim().length){
|
if (!a_date.trim().length){
|
||||||
document.getElementById("a_date").focus();
|
document.getElementById("a_date").focus();
|
||||||
|
@ -343,6 +345,12 @@ function downloadDocument()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
if (!document.getElementById("agree").checked){
|
||||||
|
document.getElementById("agree").focus();
|
||||||
|
showAlert("Bitte bestätige, dass du alle Angaben nach bestem Wissen und Gewissen gemacht hast!");
|
||||||
|
return;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
document.getElementById('banktype').value=banktype;
|
document.getElementById('banktype').value=banktype;
|
||||||
|
|
Loading…
Reference in New Issue