Line 62... |
Line 62... |
62 |
} );
|
62 |
} );
|
63 |
|
63 |
|
64 |
<?php /* Copy&Paste für das Eingabefeld "E-Mail-Wiederholung sperren */ ?>
|
64 |
<?php /* Copy&Paste für das Eingabefeld "E-Mail-Wiederholung sperren */ ?>
|
65 |
window.onload = function() {
|
65 |
window.onload = function() {
|
66 |
|
66 |
|
67 |
const email2 = document.getElementById('email2');
|
67 |
var email2 = document.getElementById('email2');
|
68 |
|
68 |
|
69 |
email2.onpaste = function(e) {
|
69 |
email2.onpaste = function(e) {
|
70 |
|
70 |
|
71 |
e.preventDefault();
|
71 |
e.preventDefault();
|
72 |
|
72 |
|
Line 347... |
Line 347... |
347 |
</label>
|
347 |
</label>
|
348 |
<input class="<?php echo (($this->view['pflicht']['tel'] != '1')?'validate[required]':''); ?> wpsg_checkout <?php echo ((in_array("tel", (array)$this->view['error']))?'wpsg_error':''); ?>" type="text" id="tel" name="wpsg[request][customer][tel]" value="<?php echo wpsg_hspc(wpsg_getStr($this->view['requestlist']['customer']['tel'])); ?>" />
|
348 |
<input class="<?php echo (($this->view['pflicht']['tel'] != '1')?'validate[required]':''); ?> wpsg_checkout <?php echo ((in_array("tel", (array)$this->view['error']))?'wpsg_error':''); ?>" type="text" id="tel" name="wpsg[request][customer][tel]" value="<?php echo wpsg_hspc(wpsg_getStr($this->view['requestlist']['customer']['tel'])); ?>" />
|
349 |
</div>
|
349 |
</div>
|
350 |
|
350 |
|
351 |
<div class="wpsg_checkoutblock" id="wpsg_strasse">
|
351 |
<div class="wpsg_checkoutblock" id="wpsg_strasse">
|
- |
|
352 |
|
- |
|
353 |
<?php if ($this->view['pflicht']['wpsg_showNr'] === '1') { ?>
|
- |
|
354 |
|
- |
|
355 |
<div class="wpsg_checkoutblock" id="wpsg_streetnr">
|
- |
|
356 |
|
- |
|
357 |
<label for="strasse" class="street wpsg_checkout"><?php echo __("Straße", "wpsg"); ?>
|
- |
|
358 |
<?php if ($this->view['pflicht']['strasse'] != '1') { ?><span class="wpsg_required">*</span><?php } ?>:
|
352 |
<label for="strasse" class="wpsg_checkout"><?php echo __("Straße Nr.", "wpsg"); ?>
|
359 |
<input class="<?php echo (($this->view['pflicht']['strasse'] != '1')?'validate[required]':''); ?> wpsg_checkout <?php echo ((in_array("strasse", (array)$this->view['error']))?'wpsg_error':''); ?>" type="text" id="strasse" name="wpsg[request][customer][strasse]" value="<?php echo wpsg_hspc(wpsg_getStr($this->view['requestlist']['customer']['strasse'])); ?>" />
|
- |
|
360 |
</label>
|
- |
|
361 |
<label for="nr" class="nr wpsg_checkout"><?php echo __('Nr', 'wpsg'); ?>
|
- |
|
362 |
<?php if ($this->view['pflicht']['strasse'] != '1') { ?><span class="wpsg_required">*</span><?php } ?>:
|
353 |
<?php if ($this->view['pflicht']['strasse'] != '1') { ?><span class="wpsg_required">*</span><?php } ?>:
|
363 |
<input class="<?php echo (($this->view['pflicht']['strasse'] != '1')?'validate[required]':''); ?> wpsg_checkout <?php echo ((in_array("nr", (array)$this->view['error']))?'wpsg_error':''); ?>" type="text" id="nr" name="wpsg[request][customer][nr]" value="<?php echo htmlspecialchars(wpsg_getStr($this->view['requestlist']['customer']['nr'])); ?>" />
|
- |
|
364 |
</label>
|
- |
|
365 |
|
- |
|
366 |
</div>
|
- |
|
367 |
|
- |
|
368 |
<?php } else { ?>
|
- |
|
369 |
|
- |
|
370 |
<label for="strasse" class="wpsg_checkout"><?php echo __("Straße Nr.", "wpsg"); ?>
|
- |
|
371 |
<?php if ($this->view['pflicht']['strasse'] != '1') { ?><span class="wpsg_required">*</span><?php } ?>:
|
- |
|
372 |
</label>
|
354 |
</label>
|
373 |
<input class="<?php echo (($this->view['pflicht']['strasse'] != '1')?'validate[required]':''); ?> wpsg_checkout <?php echo ((in_array("strasse", (array)$this->view['error']))?'wpsg_error':''); ?>" type="text" id="strasse" name="wpsg[request][customer][strasse]" value="<?php echo wpsg_hspc(wpsg_getStr($this->view['requestlist']['customer']['strasse'])); ?>" />
|
- |
|
374 |
|
355 |
<input class="<?php echo (($this->view['pflicht']['strasse'] != '1')?'validate[required]':''); ?> wpsg_checkout <?php echo ((in_array("strasse", (array)$this->view['error']))?'wpsg_error':''); ?>" type="text" id="strasse" name="wpsg[request][customer][strasse]" value="<?php echo wpsg_hspc(wpsg_getStr($this->view['requestlist']['customer']['strasse'])); ?>" />
|
375 |
<?php } ?>
|
- |
|
376 |
|
356 |
</div>
|
377 |
</div>
|
357 |
|
378 |
|
358 |
<div class="wpsg_checkoutblock" id="wpsg_postleitzahl">
|
379 |
<div class="wpsg_checkoutblock" id="wpsg_postleitzahl">
|
359 |
<label for="plz" class="wpsg_checkout"><?php echo __("Postleitzahl", "wpsg"); ?>
|
380 |
<label for="plz" class="wpsg_checkout"><?php echo __("Postleitzahl", "wpsg"); ?>
|
360 |
<?php if ($this->view['pflicht']['plz'] != '1') { ?><span class="wpsg_required">*</span><?php } ?>:
|
381 |
<?php if ($this->view['pflicht']['plz'] != '1') { ?><span class="wpsg_required">*</span><?php } ?>:
|