# usc-e-shop/1.3.5/templates/member/member_form.php

Welcart e-Commerce, version 1.3.5. 59 lines.

- Page: https://pluginprobe.com/plugins/usc-e-shop/1.3.5/code/templates/member/member_form.php
- Raw: https://pluginprobe.com/plugins/usc-e-shop/1.3.5/raw/templates/member/member_form.php
- Modified: 2012-10-05T06:24:22+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/usc-e-shop/1.3.5/code/templates/member/member_form.php#L10-L20`.

```php
<?php
global $usces;
$usces_members = $this->get_member();

$html = '<div id="memberpages">

<div id="newmember">';

$html .= '<div class="header_explanation">';
$header = '<ul>
<li>' . __('All your personal information  will be protected and handled with carefull attention.', 'usces') . '</li>
<li>' . __('Your information is entrusted to us for the purpose of providing information and respond to your requests, but to be used for any other purpose. More information, please visit our Privacy  Notice.', 'usces') . '</li>
<li>' . __('The items marked with *, are mandatory. Please complete.', 'usces') . '</li>
<li>' . __('Please use Alphanumeric characters for numbers.', 'usces') . '</li>
</ul>';
$html .= apply_filters('usces_filter_newmember_page_header', $header);
$html .= '</div>';


$html .= '<div class="error_message">' . $this->error_message . '</div>
<form action="' . apply_filters('usces_filter_newmember_form_action', USCES_MEMBER_URL) . '" method="post" onKeyDown="if (event.keyCode == 13) {return false;}">
<table border="0" cellpadding="0" cellspacing="0" class="customer_form">';
$html .= '<tr>
<th scope="row"><em>' . __('*', 'usces') . '</em>' . __('e-mail adress', 'usces') . '</th>
<td colspan="2"><input name="member[mailaddress1]" id="mailaddress1" type="text" value="' . esc_attr($usces_members['mailaddress1']) . '" /></td>
</tr>
<tr>
<th scope="row"><em>' . __('*', 'usces') . '</em>' . __('E-mail address (for verification)', 'usces') . '</th>
<td colspan="2"><input name="member[mailaddress2]" id="mailaddress2" type="text" value="' . esc_attr($usces_members['mailaddress2']) . '" /></td>
</tr>
<tr>
<th scope="row"><em>' . __('*', 'usces') . '</em>' . __('password', 'usces') . '</th>
<td colspan="2"><input name="member[password1]" id="password1" type="password" value="' . esc_attr($usces_members['password1']) . '" /></td>
</tr>
<tr>
<th scope="row"><em>' . __('*', 'usces') . '</em>' . __('Password (confirm)', 'usces') . '</th>
<td colspan="2"><input name="member[password2]" id="password2" type="password" value="' . esc_attr($usces_members['password2']) . '" /></td>
</tr>';

$html .= uesces_addressform( 'member', $usces_members );

$html .= '</table>
<input name="member_regmode" type="hidden" value="' . $member_regmode . '" /><div class="send">';
$newmemberbutton = '<input name="regmember" type="submit" value="' . __('transmit a message', 'usces') . '" />';
$html .= apply_filters('usces_filter_newmember_button', $newmemberbutton);
$html .= '</div>';
$html = apply_filters('usces_filter_newmember_inform', $html);
$html .= '</form>';

$html .= '<div class="footer_explanation">';
$footer = '';
$html .= apply_filters('usces_filter_newmember_page_footer', $footer);
$html .= '</div>';

$html .= '</div>

</div>';
?>

```
