Subversion Repositories wpShopGermany4

Rev

Rev 7316 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7316 Rev 8161
Line 1... Line 1...
1
<?php
1
<?php
2
 
2
 
3
	/**
3
	/** 
4
	 * Seite für das Profil eines Kunden
4
	 * Seite für das Profil eines Kunden
5
	 */
5
	 */
6
 
6
 
7
?>
7
?>
8
 
8
 
Line 191... Line 191...
191
		<?php if ($this->view['pflicht']['email'] != '2') { ?>
191
		<?php if ($this->view['pflicht']['email'] != '2') { ?>
192
		<div class="wpsg_checkoutblock">
192
		<div class="wpsg_checkoutblock">
193
			<label for="email" class="wpsg_checkout"><?php echo __("E-Mail Adresse", "wpsg"); ?> 
193
			<label for="email" class="wpsg_checkout"><?php echo __("E-Mail Adresse", "wpsg"); ?> 
194
			<?php if ($this->view['pflicht']['email'] != '1') { ?><span class="wpsg_required">*</span><?php } ?>:
194
			<?php if ($this->view['pflicht']['email'] != '1') { ?><span class="wpsg_required">*</span><?php } ?>:
195
			</label>
195
			</label>
196
			<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="email" name="wpsg[profil][email]" value="<?php echo htmlspecialchars($this->view['data']['email']); ?>" />		
196
			<input 
-
 
197
                class="wpsg_input_text <?php echo (($this->view['pflicht']['email'] != '1')?'validate[required]':''); ?>
-
 
198
                wpsg_checkout <?php echo ((in_array("email", (array)$this->view['error']))?'wpsg_error':''); ?>" 
-
 
199
                type="email" 
-
 
200
                id="email" 
-
 
201
                name="wpsg[profil][email]" 
-
 
202
                value="<?php echo htmlspecialchars($this->view['data']['email']); ?>" 
-
 
203
                autocomplete="off"
-
 
204
            />		
197
		</div>
205
		</div>
198
		<?php } ?>
206
		<?php } ?>
199
		
207
		
200
		<?php if ($this->view['pflicht']['emailconfirm'] == '1') { ?>
208
		<?php if ($this->view['pflicht']['emailconfirm'] == '1') { ?>
201
		<div class="wpsg_checkoutblock">
209
		<div class="wpsg_checkoutblock">
202
			<label for="email" class="wpsg_checkout"><?php echo __("E-Mail Adresse (Wiederholung)", "wpsg"); ?> 
210
			<label for="email" class="wpsg_checkout"><?php echo __("E-Mail Adresse (Wiederholung)", "wpsg"); ?> 
203
			<?php if ($this->view['pflicht']['email'] != '1') { ?><span class="wpsg_required">*</span><?php } ?>:
211
			<?php if ($this->view['pflicht']['email'] != '1') { ?><span class="wpsg_required">*</span><?php } ?>:
204
			</label>
212
			</label>
205
			<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[profil][email2]" value="<?php echo htmlspecialchars($this->view['data']['email2']); ?>" />			
213
			<input 
-
 
214
                class="wpsg_input_text <?php echo (($this->view['pflicht']['email'] != '1')?'validate[required]':''); ?> 
-
 
215
                wpsg_checkout <?php echo ((in_array("email", (array)$this->view['error']))?'wpsg_error':''); ?>" 
-
 
216
                type="email" 
-
 
217
                id="email2" 
-
 
218
                name="wpsg[profil][email2]" 
-
 
219
                value="<?php echo htmlspecialchars($this->view['data']['email2']); ?>" 
-
 
220
                autocomplete="off"
-
 
221
            />			
206
		</div>
222
		</div>
207
		<?php } ?>
223
		<?php } ?>
208
		
224
		
209
		<?php if ($this->view['pflicht']['fax'] != '2') { ?>
225
		<?php if ($this->view['pflicht']['fax'] != '2') { ?>
210
		<div class="wpsg_checkoutblock">		
226
		<div class="wpsg_checkoutblock">		
Line 322... Line 338...
322
		
338
		
323
		<div class="wpsg_checkoutblock">		
339
		<div class="wpsg_checkoutblock">		
324
			<label for="wpsg_mod_kundenverwaltung_pwd1"><?php echo __("Passwort", "wpsg"); ?>
340
			<label for="wpsg_mod_kundenverwaltung_pwd1"><?php echo __("Passwort", "wpsg"); ?>
325
			<?php if ($this->get_option('wpsg_mod_kundenverwaltung_showCheckoutRegisterzwang') == '1') { ?><span class="wpsg_required">*</span><?php } ?>:
341
			<?php if ($this->get_option('wpsg_mod_kundenverwaltung_showCheckoutRegisterzwang') == '1') { ?><span class="wpsg_required">*</span><?php } ?>:
326
			</label>
342
			</label>
327
			<input class="wpsg_checkout <?php echo ((in_array("mod_kundenverwaltung_pwd1", (array)$this->view['error']))?'wpsg_error':''); ?>" type="password" id="wpsg_mod_kundenverwaltung_pw1" name="wpsg[mod_kundenverwaltung][register_pwd1]" value="" /><span id="wpsg_mod_kundenverwaltung_password_result"></span>	
343
			<input 
-
 
344
                class="wpsg_checkout <?php echo ((in_array("mod_kundenverwaltung_pwd1", (array)$this->view['error']))?'wpsg_error':''); ?>" 
-
 
345
                type="password" 
-
 
346
                id="wpsg_mod_kundenverwaltung_pw1" 
-
 
347
                name="wpsg[mod_kundenverwaltung][register_pwd1]" 
-
 
348
                value="" 
-
 
349
                autocomplete="off"
-
 
350
            /><span id="wpsg_mod_kundenverwaltung_password_result"></span>	
328
		</div>
351
		</div>
329
		
352
		
330
		<div class="wpsg_checkoutblock">		
353
		<div class="wpsg_checkoutblock">		
331
			<label for="wpsg_mod_kundenverwaltung_pwd2"><?php echo __("Passwort wiederholen", "wpsg"); ?>
354
			<label for="wpsg_mod_kundenverwaltung_pwd2"><?php echo __("Passwort wiederholen", "wpsg"); ?>
332
			<?php if ($this->get_option('wpsg_mod_kundenverwaltung_showCheckoutRegisterzwang') == '1') { ?><span class="wpsg_required">*</span><?php } ?>:
355
			<?php if ($this->get_option('wpsg_mod_kundenverwaltung_showCheckoutRegisterzwang') == '1') { ?><span class="wpsg_required">*</span><?php } ?>:
333
			</label>
356
			</label>
-
 
357
			<input 
334
			<input class="wpsg_checkout <?php echo ((in_array("mod_kundenverwaltung_pwd2", (array)$this->view['error']))?'wpsg_error':''); ?>" type="password" id="wpsg_mod_kundenverwaltung_pwd2" name="wpsg[mod_kundenverwaltung][register_pwd2]" value="" />
358
                class="wpsg_checkout <?php echo ((in_array("mod_kundenverwaltung_pwd2", (array)$this->view['error']))?'wpsg_error':''); ?>" 
-
 
359
                type="password" 
-
 
360
                id="wpsg_mod_kundenverwaltung_pwd2" 
-
 
361
                name="wpsg[mod_kundenverwaltung][register_pwd2]" 
-
 
362
                value="" 
-
 
363
                autocomplete="off"
-
 
364
            />
335
		</div>
365
		</div>
336
		
366
		
337
		<div id="wpsg_pwd_info"> 
367
		<div id="wpsg_pwd_info"> 
338
		<h4><?php echo __('Passwort sollte folgende Regeln befolgen:','wpsg') ?></h4>
368
		<h4><?php echo __('Passwort sollte folgende Regeln befolgen:','wpsg') ?></h4>
339
			<ul>
369
			<ul>