Subversion Repositories wpShopGermany4

Rev

Rev 6874 | Rev 7184 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1067 daniel 1
<?php
2
 
3
	/**
4
	 * Template für die Registrierungsseite
5
	 */
6
 
7
?>
1460 david 8
<?php //wpsg_debug($this->view['error']) ?>
9
<script type="text/javascript">
10
 
11
	jQuery(document).ready(function() {
3602 daniel 12
 
13
		<?php if ($this->get_option('wpsg_form_validation') == '1') { ?>
14
 
15
		if (typeof jQuery.validationEngine == "object")
16
		{
1460 david 17
 
3602 daniel 18
			jQuery("#form-step2").validationEngine('attach', {promptPosition : "centerRight", scroll: false});
1460 david 19
 
3602 daniel 20
			jQuery('.wpsg_mod_kundenverwaltung_login').bind('click', function(){
21
				jQuery("#form-step2").validationEngine('detach');
22
			});
23
 
24
		}
1460 david 25
 
3602 daniel 26
		<?php } else if ($this->get_option('wpsg_form_validation') == '2') { ?>
27
 
28
		jQuery.validator.addMethod("cRequired", jQuery.validator.methods.required, "<?php echo __('Dieses Feld ist ein Pflichtfeld.', 'wpsg'); ?>");
29
		jQuery.validator.addClassRules('validate[required]', { cRequired: true } );
30
		jQuery("#form-step2").validate( {
31
			ignore: '',
32
			errorClass: 'wpsg_error',
33
			onsubmit: false,
34
			showErrors: function(errorMap, errorList) {
35
 
36
				this.defaultShowErrors();
37
 
38
			}
39
		} );
40
 
41
		jQuery('.wpsg_registerButton').bind('click', function() {
42
 
43
			var bReturn = jQuery('#form-step2').validate().form();
44
			if (jQuery('#form-step2 input.wpsg_error').length > 0) jQuery('#form-step2 input.wpsg_error')[0].focus();
45
			return bReturn;
46
 
47
		} );
48
 
49
		<?php } ?>
50
 
5382 daniel 51
 
52
// Visualisierung der Passwortstärke
53
 
54
		jQuery('input[type=password]').keyup(function(){
55
 
56
			var password = jQuery(this).val();
57
 
58
			if (password.length < 6) {
59
 
60
				jQuery('#wpsg_pwd_length').removeClass('valid').addClass('invalid');
61
 
62
			}else{
63
 
64
				jQuery('#wpsg_pwd_length').removeClass('invalid').addClass('valid');
65
 
66
			}
67
 
68
			if (password.match(/([a-z])/)) {
69
 
70
				jQuery('#wpsg_pwd_letter').removeClass('invalid').addClass('valid');
71
 
72
			}else{
73
 
74
				jQuery('#wpsg_pwd_letter').removeClass('valid').addClass('invalid');
75
 
76
			}
77
 
78
			if (password.match(/([A-Z])/)) {
79
 
80
				jQuery('#wpsg_pwd_capital').removeClass('invalid').addClass('valid');
81
 
82
			}else{
83
 
84
				jQuery('#wpsg_pwd_capital').removeClass('valid').addClass('invalid');
85
 
86
			}
87
 
88
			if (password.match(/([0-9])/)) {
89
 
90
				jQuery('#wpsg_pwd_number').removeClass('invalid').addClass('valid');
91
 
92
			}else{
93
 
94
				jQuery('#wpsg_pwd_number').removeClass('valid').addClass('invalid');
95
 
96
			}
97
 
98
			if (password.match(/([~,!,%,@,&,#,°,^,$,?,_,*,§])/)) {
99
 
100
				jQuery('#wpsg_pwd_speziell').removeClass('invalid').addClass('valid');
101
 
102
			}else{
103
 
104
				jQuery('#wpsg_pwd_speziell').removeClass('valid').addClass('invalid');
105
 
106
			}
107
 
108
 
109
			jQuery('#wpsg_pwd_info').show();
110
 
111
 
112
			jQuery(this).blur(function(){
113
 
114
				jQuery('#wpsg_pwd_info').hide();
115
 
116
			});
117
 
118
		});
119
 
1460 david 120
 
5382 daniel 121
// Validierung Spam
5013 daniel 122
	<?php
6578 hartmut 123
	if (isset($_GET["wpsg_spam_email"]) && $_GET["wpsg_spam_email"] != "") {
5382 daniel 124
	     		echo "<p>Sie haben ein Feld ausgefüllt, das frei bleiben muss.</p>";
125
	     		exit;
126
	  		}
5013 daniel 127
	?>
5382 daniel 128
 
129
	});
130
 
1460 david 131
</script>
132
 
3445 daniel 133
<div class="wpsg wpsg_checkout wpsg_register">
1067 daniel 134
 
135
	<?php echo $this->writeFrontendMessage(); ?>
136
 
1460 david 137
	<form id="form-step2" method="post" action="<?php echo $this->callMod('wpsg_mod_kundenverwaltung', 'getRegisterURL'); ?>">
1067 daniel 138
 
6874 hartmut 139
		<?php if ($this->view['pflicht']['firma'] != '2') { ?>
3447 daniel 140
		<div class="wpsg_checkoutblock">
1460 david 141
			<label for="wpsg_firma"><?php echo __("Firma", "wpsg"); ?>
142
			<?php if ($this->view['pflicht']['firma'] != '1') { ?><span class="wpsg_required">*</span><?php } ?>:
143
			</label>
6081 hartmut 144
			<input class="<?php echo (($this->view['pflicht']['firma'] != '1')?'validate[required]':''); ?> wpsg_register <?php echo ((in_array("firma", (array)$this->view['error']))?'wpsg_error':''); ?>" type="text" id="wpsg_firma" name="wpsg[register][firma]" value="<?php echo htmlspecialchars(wpsg_getStr($this->view['data']['firma'])); ?>" />
1460 david 145
		</div>
6874 hartmut 146
		<?php } ?>
1460 david 147
 
6874 hartmut 148
		<?php if ($this->view['pflicht']['anrede'] != '2') { ?>
3447 daniel 149
		<div class="wpsg_checkoutblock">
1460 david 150
			<label for="wpsg_title"><?php echo __('Anrede', 'wpsg'); ?>
151
			<?php if ($this->view['pflicht']['anrede'] != '1') { ?><span class="wpsg_required">*</span><?php } ?>:</label>
152
			<select class="<?php echo (($this->view['pflicht']['anrede'] != '1')?'validate[required]':''); ?> wpsg_register <?php echo ((in_array("title", (array)$this->view['error']))?'wpsg_error':''); ?>" id="wpsg_title" name="wpsg[register][title]">
153
				<option value="-1"><?php echo __('Bitte auswählen', 'wpsg'); ?></option>
6107 hartmut 154
				<?php $i=0; foreach (explode("|", $this->view['pflicht']['anrede_auswahl']) as $t) { ?>
155
				<option value="<?php echo $i; /*wpsg_hspc($t);*/ $i++; ?>" <?php echo (($this->view['data']['title'] == $t)?'selected="selected"':''); ?>><?php echo $t; ?></option>
1460 david 156
			<?php } ?>
157
			</select>
158
		</div>
6874 hartmut 159
		<?php } ?>
1460 david 160
 
6874 hartmut 161
		<?php if ($this->view['pflicht']['vname'] != '2') { ?>
3447 daniel 162
		<div class="wpsg_checkoutblock">
3649 daniel 163
			<label for="vname" class="wpsg_register"><?php echo __("Vorname", "wpsg"); ?>
1460 david 164
			<?php if ($this->view['pflicht']['vname'] != '1') { ?><span class="wpsg_required">*</span><?php } ?>:
165
			</label>
6081 hartmut 166
			<input class="<?php echo (($this->view['pflicht']['vname'] != '1')?'validate[required]':''); ?> wpsg_register <?php echo ((in_array("vname", (array)$this->view['error']))?'wpsg_error':''); ?>" type="text" id="vname" name="wpsg[register][vname]" value="<?php echo htmlspecialchars(wpsg_getStr($this->view['data']['vname'])); ?>" />
1460 david 167
		</div>
6874 hartmut 168
		<?php } ?>
1460 david 169
 
6874 hartmut 170
		<?php if ($this->view['pflicht']['name'] != '2') { ?>
3447 daniel 171
		<div class="wpsg_checkoutblock">
1460 david 172
			<label for="name" class="wpsg_register"><?php echo __("Name", "wpsg"); ?>
6081 hartmut 173
			<?php if ($this->view['pflicht']['name'] != '1') { ?><span class="wpsg_required">*</span><?php } ?>:
1460 david 174
			</label>
6081 hartmut 175
			<input class="<?php echo (($this->view['pflicht']['name'] != '1')?'validate[required]':''); ?> wpsg_register <?php echo ((in_array("name", (array)$this->view['error']))?'wpsg_error':''); ?>" type="text" id="name" name="wpsg[register][name]" value="<?php echo htmlspecialchars(wpsg_getStr($this->view['data']['name'])); ?>" />
1460 david 176
		</div>
6874 hartmut 177
		<?php } ?>
1460 david 178
 
6874 hartmut 179
		<?php if ($this->view['pflicht']['email'] != '2') { ?>
3447 daniel 180
		<div class="wpsg_checkoutblock">
3649 daniel 181
			<label for="email" class="wpsg_register"><?php echo __("E-Mail Adresse", "wpsg"); ?>
1460 david 182
			<?php if ($this->view['pflicht']['email'] != '1') { ?><span class="wpsg_required">*</span><?php } ?>:
183
			</label>
6081 hartmut 184
			<input class="wpsg_input_text <?php echo (($this->view['pflicht']['email'] != '1')?'validate[required]':''); ?> wpsg_register <?php echo ((in_array("email", (array)$this->view['error']))?'wpsg_error':''); ?>" type="email" id="email" name="wpsg[register][email]" value="<?php echo htmlspecialchars(wpsg_getStr($this->view['data']['email'])); ?>" />
1460 david 185
		</div>
6874 hartmut 186
		<?php } ?>
1460 david 187
 
6874 hartmut 188
		<?php if ($this->view['pflicht']['email'] != '2') { ?>
3447 daniel 189
		<div class="wpsg_checkoutblock">
3649 daniel 190
			<label for="email" class="wpsg_register"><?php echo __("E-Mail Adresse (Wiederholung)", "wpsg"); ?>
1460 david 191
			<?php if ($this->view['pflicht']['email'] != '1') { ?><span class="wpsg_required">*</span><?php } ?>:
192
			</label>
6081 hartmut 193
			<input class="wpsg_input_text <?php echo (($this->view['pflicht']['email'] != '1')?'validate[required]':''); ?> wpsg_checkout <?php echo ((in_array("email", (array)$this->view['error']))?'wpsg_error':''); ?>" type="email" id="email2" name="wpsg[register][email2]" value="<?php echo htmlspecialchars(wpsg_getStr($this->view['data']['register']['email2'])); ?>" />
1460 david 194
		</div>
6874 hartmut 195
		<?php } ?>
1460 david 196
 
3447 daniel 197
		<div class="wpsg_checkoutblock">
3649 daniel 198
			<label for="pwd1" class="wpsg_register"><?php echo __("Passwort", "wpsg"); ?>
6081 hartmut 199
			<?php if (wpsg_getStr($this->view['pflicht']['pwd1']) != '1') { ?><span class="wpsg_required">*</span><?php } ?>:
1460 david 200
			</label>
6081 hartmut 201
			<input class="<?php echo ((wpsg_getStr($this->view['pflicht']['pwd1']) != '1')?'validate[required]':''); ?> wpsg_register <?php echo ((in_array("mod_kundenverwaltung_pwd1", (array)$this->view['error']))?'wpsg_error':''); ?>" type="password" id="pwd1" name="wpsg[register][register_pwd1]" value="" /><span id="wpsg_checkoutblock_password_result"></span>
1460 david 202
		</div>
203
 
3447 daniel 204
		<div class="wpsg_checkoutblock">
3649 daniel 205
			<label for="pwd2" class="wpsg_register"><?php echo __("Passwort (Wiederholung)", "wpsg"); ?>
6081 hartmut 206
			<?php if (wpsg_getStr($this->view['pflicht']['pwd2']) != '1') { ?><span class="wpsg_required">*</span><?php } ?>:
1460 david 207
			</label>
6081 hartmut 208
			<input class="<?php echo ((wpsg_getStr($this->view['pflicht']['pwd2']) != '1')?'validate[required]':''); ?> wpsg_register <?php echo ((in_array("mod_kundenverwaltung_pwd2", (array)$this->view['error']))?'wpsg_error':''); ?>" type="password" id="pwd2" name="wpsg[register][register_pwd2]" value="" />
1460 david 209
		</div>
210
 
5382 daniel 211
		<div id="wpsg_pwd_info">
212
			<h4><?php echo __('Passwort sollte folgende Regeln befolgen:','wpsg') ?></h4>
213
			<ul>
6671 thomas 214
				<li id="wpsg_pwd_length" class="invalid"><?php echo __('Mit mindestens 8 Zeichen wird das Passwort noch sicherer','wpsg')?></li>
5382 daniel 215
				<li id="wpsg_pwd_letter" class="invalid"><?php echo __('Mit mindestens einem Kleinbuchstaben wird das Passwort noch sicherer','wpsg') ?></li>
216
				<li id="wpsg_pwd_capital" class="invalid"><?php echo __('Mit mindestens einem Großbuchstaben wird das Passwort noch sicherer','wpsg') ?></li>
217
				<li id="wpsg_pwd_number" class="invalid"><?php echo __('Mit mindestens einer Zahl wird das Passwort noch sicherer','wpsg') ?></li>
218
				<li id="wpsg_pwd_speziell" class="invalid"><?php echo __('Mit mindestens einem Sonderzeichen wird das Passwort noch sicherer','wpsg') ?></li>
219
			</ul>
220
		</div>
221
 
6874 hartmut 222
		<?php if ($this->view['pflicht']['geb'] != '2') { ?>
3447 daniel 223
		<div class="wpsg_checkoutblock">
4918 thomas 224
			<label for="geb" class="wpsg_register"><?php echo __('Geburtsdatum (Format: TT.MM.JJJJ)', 'wpsg'); ?>
1460 david 225
			<?php if ($this->view['pflicht']['geb'] != '1') { ?><span class="wpsg_required">*</span><?php } ?>:
226
			</label>
6081 hartmut 227
			<input class="wpsg_input_text <?php echo (($this->view['pflicht']['geb'] != '1')?'validate[required]':''); ?> wpsg_register <?php echo ((in_array("geb", (array)$this->view['error']))?'wpsg_error':''); ?>" type="text" id="geb" name="wpsg[register][geb]" value="<?php echo htmlspecialchars(wpsg_getStr($this->view['data']['geb'])); ?>" />
1460 david 228
		</div>
6874 hartmut 229
		<?php } ?>
230
 
231
		<?php if ($this->view['pflicht']['fax'] != '2') { ?>
3447 daniel 232
		<div class="wpsg_checkoutblock">
1460 david 233
			<label for="fax" class="wpsg_register"><?php echo __("Fax.", "wpsg"); ?>
234
			<?php if ($this->view['pflicht']['fax'] != '1') { ?><span class="wpsg_required">*</span><?php } ?>:
235
			</label>
6081 hartmut 236
			<input class="wpsg_input_text <?php echo (($this->view['pflicht']['fax'] != '1')?'validate[required]':''); ?> wpsg_register <?php echo ((in_array("fax", (array)$this->view['error']))?'wpsg_error':''); ?>" type="tel" id="fax" name="wpsg[register][fax]" value="<?php echo htmlspecialchars(wpsg_getStr($this->view['data']['fax'])); ?>" />
1460 david 237
		</div>
6874 hartmut 238
		<?php } ?>
1460 david 239
 
6874 hartmut 240
		<?php if ($this->view['pflicht']['tel'] != '2') { ?>
3447 daniel 241
		<div class="wpsg_checkoutblock">
1460 david 242
			<label for="tel" class="wpsg_register"><?php echo __("Tel.", "wpsg"); ?>
243
			<?php if ($this->view['pflicht']['tel'] != '1') { ?><span class="wpsg_required">*</span><?php } ?>:
244
			</label>
6081 hartmut 245
			<input class="wpsg_input_text <?php echo (($this->view['pflicht']['tel'] != '1')?'validate[required]':''); ?> wpsg_register <?php echo ((in_array("tel", (array)$this->view['error']))?'wpsg_error':''); ?>" type="tel" id="tel" name="wpsg[register][tel]" value="<?php echo htmlspecialchars(wpsg_getStr($this->view['data']['tel'])); ?>" />
1460 david 246
		</div>
6874 hartmut 247
		<?php } ?>
1460 david 248
 
6874 hartmut 249
		<?php if ($this->view['pflicht']['strasse'] != '2') { ?>
3447 daniel 250
		<div class="wpsg_checkoutblock">
6053 hartmut 251
			<label for="strasse" class="wpsg_register"><?php echo __("Straße Nr.", "wpsg"); ?>
1460 david 252
			<?php if ($this->view['pflicht']['strasse'] != '1') { ?><span class="wpsg_required">*</span><?php } ?>:
253
			</label>
6081 hartmut 254
			<input class="<?php echo (($this->view['pflicht']['strasse'] != '1')?'validate[required]':''); ?> wpsg_register <?php echo ((in_array("strasse", (array)$this->view['error']))?'wpsg_error':''); ?>" type="text" id="strasse" name="wpsg[register][strasse]" value="<?php echo htmlspecialchars(wpsg_getStr($this->view['data']['strasse'])); ?>" />
1460 david 255
		</div>
6874 hartmut 256
		<?php } ?>
1460 david 257
 
6874 hartmut 258
		<?php if ($this->view['pflicht']['plz'] != '2') { ?>
3447 daniel 259
		<div class="wpsg_checkoutblock">
3649 daniel 260
			<label for="plz" class="wpsg_register"><?php echo __("Postleitzahl", "wpsg"); ?>
1460 david 261
			<?php if ($this->view['pflicht']['plz'] != '1') { ?><span class="wpsg_required">*</span><?php } ?>:
262
			</label>
6081 hartmut 263
			<input class="wpsg_input_text <?php echo (($this->view['pflicht']['plz'] != '1')?'validate[required]':''); ?> wpsg_register <?php echo ((in_array("plz", (array)$this->view['error']))?'wpsg_error':''); ?>" type="text" id="plz" name="wpsg[register][plz]" value="<?php echo htmlspecialchars(wpsg_getStr($this->view['data']['plz'])); ?>" />
1460 david 264
		</div>
6874 hartmut 265
		<?php } ?>
1460 david 266
 
6874 hartmut 267
		<?php if ($this->view['pflicht']['ort'] != '2') { ?>
3447 daniel 268
		<div class="wpsg_checkoutblock">
3649 daniel 269
			<label for="ort" class="wpsg_register"><?php echo __("Ort", "wpsg"); ?>
1460 david 270
			<?php if ($this->view['pflicht']['ort'] != '1') { ?><span class="wpsg_required">*</span><?php } ?>:
271
			</label>
6081 hartmut 272
			<input class="<?php echo (($this->view['pflicht']['ort'] != '1')?'validate[required]':''); ?> wpsg_register <?php echo ((in_array("ort", (array)$this->view['error']))?'wpsg_error':''); ?>" type="text" id="ort" name="wpsg[register][ort]" value="<?php echo htmlspecialchars(wpsg_getStr($this->view['data']['ort'])); ?>" />
1460 david 273
		</div>
6874 hartmut 274
		<?php } ?>
1460 david 275
 
6874 hartmut 276
		<?php if ($this->view['pflicht']['land'] != '2') { ?>
3447 daniel 277
		<div class="wpsg_checkoutblock">
3649 daniel 278
			<label for="wpsg_land" class="wpsg_register"><?php echo __("Land", "wpsg"); ?>
1460 david 279
			<?php if ($this->view['pflicht']['land'] != '1') { ?><span class="wpsg_required">*</span><?php } ?>:
280
			</label>
281
			<select name="wpsg[register][land]" class="<?php echo (($this->view['pflicht']['land'] != '1')?'validate[required]':''); ?> wpsg_register <?php echo ((in_array("land", (array)$this->view['error']))?'wpsg_error':''); ?>" id="wpsg_land">
282
				<option value="-1"><?php echo __('Bitte auswählen', 'wpsg'); ?></option>
283
				<?php foreach ($this->view['laender'] as $l) { ?>
284
				<option value="<?php echo $l['id']; ?>" <?php echo (($l['id'] == $this->view['data']['land'])?'selected="selected"':(($this->get_option('wpsg_defaultland') == $l['id'])?'selected="selected"':'')); ?>><?php echo wpsg_hspc($l['name']); ?></option>
1067 daniel 285
				<?php } ?>
1460 david 286
			</select>
287
		</div>
6874 hartmut 288
		<?php } ?>
1067 daniel 289
 
6874 hartmut 290
		<?php if ($this->view['pflicht']['ustidnr'] != '2') { ?>
3447 daniel 291
		<div class="wpsg_checkoutblock">
3649 daniel 292
			<label for="wpsg_ustidnr" class="wpsg_register"><?php echo __("UStIdNr.", "wpsg"); ?>
1460 david 293
			<?php if ($this->view['pflicht']['ustidnr'] != '1') { ?><span class="wpsg_required">*</span><?php } ?>:
294
			</label>
6081 hartmut 295
			<input class="<?php echo (($this->view['pflicht']['ustidnr'] != '1')?'validate[required]':''); ?> wpsg_register <?php echo ((in_array("ustidnr", (array)$this->view['error']))?'wpsg_error':''); ?>" type="text" id="wpsg_ustidnr" name="wpsg[register][ustidnr]" value="<?php echo htmlspecialchars(wpsg_getStr($this->view['data']['ustidnr'])); ?>" />
1460 david 296
		</div>
6874 hartmut 297
		<?php } ?>
1067 daniel 298
 
2323 daniel 299
		<?php /* Automatische Einbindung der benutzerdefinierten Felder */ ?>
300
		<?php if ($this->get_option('wpsg_kundenvariablen_show') == '1') { ?>
301
		<?php foreach ((array)$this->view['pflicht']['custom'] as $c_id => $c) { if ($c['show'] != '2') { ?>
3447 daniel 302
		<div class="wpsg_checkoutblock">
2323 daniel 303
			<label class="wpsg_cv" for="wpsg_cv_<?php echo $c_id; ?>">
304
				<?php echo wpsg_hspc(__($c['name'], 'wpsg')); ?><?php if ($c['show'] == '0') { ?> <span class="wpsg_required">*</span><?php } ?>:
305
				<?php if ($c['typ'] == '0') { // Textfeld ?>
6874 hartmut 306
				<input class="<?php echo (($c['show'] == '0')?'validate[required]':''); ?> <?php echo ((in_array("custom_".$c_id, (array)$this->view['error']))?'wpsg_error':''); ?>" name="wpsg[register][custom][<?php echo $c_id; ?>]" type="text" value="<?php echo wpsg_hspc(@$this->view['data']['custom'][$c_id]); ?>" />
2323 daniel 307
				<?php } else if ($c['typ'] == '1') { $arAuswahl = explode("|", $c['auswahl']); // Auswahlfeld ?>
308
				<select class="<?php echo (($c['show'] == '0')?'validate[required]':''); ?> <?php echo ((in_array("custom_".$c_id, (array)$this->view['error']))?'wpsg_error':''); ?>" name="wpsg[register][custom][<?php echo $c_id; ?>]">
309
					<option value="-1"><?php echo __('Bitte Auswählen', 'wpsg'); ?></option>
310
					<?php foreach ((array)$arAuswahl as $a) { ?>
6874 hartmut 311
					<option value="<?php echo wpsg_hspc($a); ?>" <?php echo (($a == wpsg_getStr($this->view['data']['custom'][$c_id]))?'selected="selected"':''); ?>><?php echo wpsg_hspc($a); ?></option>
2323 daniel 312
					<?php } ?>
313
				</select>
314
				<?php } else if ($c['typ'] == '2') { // Checkbox ?>
315
				<input type="hidden" name="wpsg[register][custom][<?php echo $c_id; ?>]" value="0" />
6874 hartmut 316
				<input id="wpsg_cv_<?php echo $c_id; ?>" class="<?php echo (($c['show'] == '0')?'validate[required]':''); ?> checkbox" type="checkbox" value="1" name="wpsg[register][custom][<?php echo $c_id; ?>]" value="1" <?php echo wpsg_hspc((@$this->view['data']['custom'][$c_id] == '1')?'checked="checked"':''); ?> />
4925 thomas 317
				<span class="wpsg_clear"></span>
2323 daniel 318
				<?php } ?>
319
			</label>
320
		</div>
321
		<?php } } ?>
322
		<?php } ?>
323
		<?php /* Automatische Einbindung der benutzerdefinierten Kundenfelder ENDE */ ?>
324
		<div class="wpsg_clear"></div>
7140 daniel 325
 
326
        <?php if ($this->get_option('wpsg_mod_kundenverwaltung_recaptcha_register') === '1') { ?>
327
            <div class="wpsg_checkoutblock">
328
                <label>
329
                    <?php echo __('SPAM Schutz Abfrage'); ?> <span class="wpsg_required">*</span>:
330
                    <div class="g-recaptcha" data-sitekey="<?php echo $this->get_option('wpsg_mod_kundenveraltung_recaptcha_key'); ?>"></div>
331
                </label>
332
            </div>
333
            <div class="wpsg_clear"></div>
334
        <?php } ?>
335
 
2780 daniel 336
		<div class="wpsg_mandatoryfield_hint">
337
			<?php echo wpsg_translate(__('Mit #1# gekennzeichnete Felder sind Pflichtfelder.', 'wpsg'), '<span class="wpsg_required">*</span>'); ?>
338
		</div>
339
 
5013 daniel 340
		<?php /* versteckte Sicherheitsabfrage als Bot-Schutz START*/ ?>
341
			<span style="display:none">
342
   				<label for="wpsg_spam_email">Das Feld muss frei bleiben:</label>
343
   				<input type="text" name="wpsg_spam_email" id="wpsg_spam_email" title=" dieses Feld muss frei bleiben " />
344
			</span>
345
		<?php /* versteckte Sicherheitsabfrage als Bot-Schutz ENDE*/ ?>
7140 daniel 346
 
2308 daniel 347
		<br />
348
 
1067 daniel 349
		<input type="submit" class="wpsg_button wpsg_registerButton" value="<?php echo __('Registrieren', 'wpsg'); ?>" name="wpsg_mod_kundenverwaltung_register" />
350
 
351
		<?php $this->ClearSessionErrors(); ?>
352
 
353
		<div class="wpsg_clear"></div>
354
	</form>
355
</div>