Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
Open sidebar
lolo888
ISPConfig 3
Commits
acbf53a3
Commit
acbf53a3
authored
May 20, 2007
by
tbrehm
Browse files
changed client form
parent
81d69be3
Changes
16
Expand all
Hide whitespace changes
Inline
Side-by-side
interface/web/client/client_del.php
View file @
acbf53a3
<?php
/*
Copyright (c) 2005, Till Brehm, projektfarm Gmbh
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of ISPConfig nor the names of its contributors
may be used to endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/******************************************
* Begin Form configuration
******************************************/
$list_def_file
=
"list/
reseller
.list.php"
;
$tform_def_file
=
"form/
reseller
.tform.php"
;
/******************************************
* End Form configuration
******************************************/
require_once
(
'../../lib/config.inc.php'
);
require_once
(
'../../lib/app.inc.php'
);
// Checke Berechtigungen für Modul
if
(
!
stristr
(
$_SESSION
[
"s"
][
"user"
][
"modules"
],
$_SESSION
[
"s"
][
"module"
][
"name"
]))
{
header
(
"Location: ../index.php"
);
exit
;
}
$app
->
uses
(
"tform_actions"
);
$app
->
tform_actions
->
onDelete
();
<?php
/*
Copyright (c) 2005, Till Brehm, projektfarm Gmbh
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of ISPConfig nor the names of its contributors
may be used to endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/******************************************
* Begin Form configuration
******************************************/
$list_def_file
=
"list/
client
.list.php"
;
$tform_def_file
=
"form/
client
.tform.php"
;
/******************************************
* End Form configuration
******************************************/
require_once
(
'../../lib/config.inc.php'
);
require_once
(
'../../lib/app.inc.php'
);
// Checke Berechtigungen für Modul
if
(
!
stristr
(
$_SESSION
[
"s"
][
"user"
][
"modules"
],
$_SESSION
[
"s"
][
"module"
][
"name"
]))
{
header
(
"Location: ../index.php"
);
exit
;
}
$app
->
uses
(
"tform_actions"
);
$app
->
tform_actions
->
onDelete
();
?>
\ No newline at end of file
interface/web/client/client_edit.php
View file @
acbf53a3
<?php
/*
Copyright (c) 2005, Till Brehm, projektfarm Gmbh
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of ISPConfig nor the names of its contributors
may be used to endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/******************************************
* Begin Form configuration
******************************************/
$tform_def_file
=
"form/
reseller
.tform.php"
;
/******************************************
* End Form configuration
******************************************/
require_once
(
'../../lib/config.inc.php'
);
require_once
(
'../../lib/app.inc.php'
);
// Checking module permissions
if
(
!
stristr
(
$_SESSION
[
"s"
][
"user"
][
"modules"
],
$_SESSION
[
"s"
][
"module"
][
"name"
]))
{
header
(
"Location: ../index.php"
);
exit
;
}
// Loading classes
$app
->
uses
(
'tpl,tform,tform_actions'
);
// let tform_actions handle the page
$app
->
tform_actions
->
onLoad
();
<?php
/*
Copyright (c) 2005, Till Brehm, projektfarm Gmbh
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of ISPConfig nor the names of its contributors
may be used to endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/******************************************
* Begin Form configuration
******************************************/
$tform_def_file
=
"form/
client
.tform.php"
;
/******************************************
* End Form configuration
******************************************/
require_once
(
'../../lib/config.inc.php'
);
require_once
(
'../../lib/app.inc.php'
);
// Checking module permissions
if
(
!
stristr
(
$_SESSION
[
"s"
][
"user"
][
"modules"
],
$_SESSION
[
"s"
][
"module"
][
"name"
]))
{
header
(
"Location: ../index.php"
);
exit
;
}
// Loading classes
$app
->
uses
(
'tpl,tform,tform_actions'
);
// let tform_actions handle the page
$app
->
tform_actions
->
onLoad
();
?>
\ No newline at end of file
interface/web/client/client_list.php
View file @
acbf53a3
<?php
require_once
(
'../../lib/config.inc.php'
);
require_once
(
'../../lib/app.inc.php'
);
/******************************************
* Begin Form configuration
******************************************/
$list_def_file
=
"list/
reseller
.list.php"
;
/******************************************
* End Form configuration
******************************************/
// Checking module permissions
if
(
!
stristr
(
$_SESSION
[
"s"
][
"user"
][
"modules"
],
$_SESSION
[
"s"
][
"module"
][
"name"
]))
{
header
(
"Location: ../index.php"
);
exit
;
}
$app
->
uses
(
'listform_actions'
);
$app
->
listform_actions
->
onLoad
();
<?php
require_once
(
'../../lib/config.inc.php'
);
require_once
(
'../../lib/app.inc.php'
);
/******************************************
* Begin Form configuration
******************************************/
$list_def_file
=
"list/
client
.list.php"
;
/******************************************
* End Form configuration
******************************************/
// Checking module permissions
if
(
!
stristr
(
$_SESSION
[
"s"
][
"user"
][
"modules"
],
$_SESSION
[
"s"
][
"module"
][
"name"
]))
{
header
(
"Location: ../index.php"
);
exit
;
}
$app
->
uses
(
'listform_actions'
);
$app
->
listform_actions
->
onLoad
();
?>
\ No newline at end of file
interface/web/client/form/client.tform.php
View file @
acbf53a3
This diff is collapsed.
Click to expand it.
interface/web/client/lib/lang/en_client.lng
View file @
acbf53a3
...
...
@@ -13,6 +13,9 @@ $wb["fax_txt"] = 'Fax';
$wb
[
"email_txt"
]
=
'Email'
;
$wb
[
"internet_txt"
]
=
'Internet'
;
$wb
[
"icq_txt"
]
=
'ICQ'
;
$wb
[
"notes_txt"
]
=
'Notes'
;
$wb
[
"btn_save_txt"
]
=
'Save'
;
$wb
[
"btn_cancel_txt"
]
=
'Cancel'
;
$wb
[
"limit_client_txt"
]
=
'limit_client'
;
$wb
[
"limit_domain_txt"
]
=
'limit_domain'
;
$wb
[
"limit_subdomain_txt"
]
=
'limit_subdomain'
;
...
...
@@ -22,16 +25,7 @@ $wb["limit_webquota_txt"] = 'limit_webquota';
$wb
[
"limit_mailquota_txt"
]
=
'limit_mailquota'
;
$wb
[
"limit_database_txt"
]
=
'limit_database'
;
$wb
[
"ip_address_txt"
]
=
'ip_address'
;
$wb
[
"notes_txt"
]
=
'Notes'
;
$wb
[
"btn_save_txt"
]
=
'Save'
;
$wb
[
"btn_cancel_txt"
]
=
'Cancel'
;
// Error Messages
$wb
[
'limit_client_error_notint'
]
=
'Client Limit is not a number.'
;
$wb
[
'firstname_error_empty'
]
=
'Firstname is empty.'
;
$wb
[
'surname_error_empty'
]
=
'Surname is empty.'
;
$wb
[
"limit_client_error_notint"
]
=
'Client Limit is not a number.'
;
$wb
[
"firstname_error_empty"
]
=
'Firstname is empty.'
;
$wb
[
"surname_error_empty"
]
=
'Surname is empty.'
;
?>
\ No newline at end of file
interface/web/client/lib/lang/en_clients_list.lng
0 → 100644
View file @
acbf53a3
<?php
$wb
[
"list_head_txt"
]
=
'clients'
;
$wb
[
"company_txt"
]
=
'company'
;
$wb
[
"firstname_txt"
]
=
'firstname'
;
$wb
[
"surname_txt"
]
=
'surname'
;
$wb
[
"city_txt"
]
=
'city'
;
$wb
[
"page_txt"
]
=
'Page'
;
$wb
[
"page_of_txt"
]
=
'of'
;
$wb
[
"page_next_txt"
]
=
'Next'
;
$wb
[
"page_back_txt"
]
=
'Back'
;
$wb
[
"delete_txt"
]
=
'Delete'
;
$wb
[
"filter_txt"
]
=
'Filter'
;
?>
\ No newline at end of file
interface/web/client/lib/module.conf.php
View file @
acbf53a3
<?php
<?php
$module
=
array
(
'name'
=>
'
resellers
'
,
'title'
=>
'
Resellers
'
,
'name'
=>
'
client
'
,
'title'
=>
'
Client
'
,
'template'
=>
'module.tpl.htm'
,
'navframe_page'
=>
''
,
'startpage'
=>
'
resellers/reseller
_list.php'
,
'startpage'
=>
'
client/client
_list.php'
,
'tab_width'
=>
''
,
'nav'
=>
array
(
0
=>
array
(
'title'
=>
'
Reseller
s'
,
'title'
=>
'
Client
s'
,
'open'
=>
1
,
'items'
=>
array
(
0
=>
array
(
'title'
=>
'Add
Reseller
'
,
'title'
=>
'Add
Client
'
,
'target'
=>
'content'
,
'link'
=>
'
resellers/reseller
_edit.php'
,
'link'
=>
'
client/client
_edit.php'
,
),
1
=>
array
(
'title'
=>
'Edit
Reseller
'
,
'title'
=>
'Edit
Client
'
,
'target'
=>
'content'
,
'link'
=>
'
resellers/reseller
_list.php'
,
'link'
=>
'
client/client
_list.php'
,
),
),
),
...
...
@@ -53,5 +53,5 @@ $module = array (
),
),
),
)
)
?>
\ No newline at end of file
interface/web/client/list/client.list.php
View file @
acbf53a3
<?php
/*
Datatypes:
- INTEGER
- DOUBLE
- CURRENCY
- VARCHAR
- TEXT
- DATE
*/
// Name of the list
$liste
[
"name"
]
=
"
reseller
s"
;
// Database table
$liste
[
"table"
]
=
"
reseller
"
;
// Index index field of the database table
$liste
[
"table_idx"
]
=
"
reseller
_id"
;
// Search Field Prefix
$liste
[
"search_prefix"
]
=
"search_"
;
// Records per page
$liste
[
"records_per_page"
]
=
15
;
// Script File of the list
$liste
[
"file"
]
=
"
reseller
_list.php"
;
// Script file of the edit form
$liste
[
"edit_file"
]
=
"
reseller
_edit.php"
;
// Script File of the delete script
$liste
[
"delete_file"
]
=
"
reseller
_del.php"
;
// Paging Template
$liste
[
"paging_tpl"
]
=
"templates/paging.tpl.htm"
;
// Enable authe
$liste
[
"auth"
]
=
"yes"
;
/*****************************************************
* Suchfelder
*****************************************************/
$liste
[
"item"
][]
=
array
(
'field'
=>
"company"
,
'datatype'
=>
"VARCHAR"
,
'formtype'
=>
"TEXT"
,
'op'
=>
"like"
,
'prefix'
=>
"%"
,
'suffix'
=>
"%"
,
'width'
=>
""
,
'value'
=>
""
);
$liste
[
"item"
][]
=
array
(
'field'
=>
"firstname"
,
'datatype'
=>
"VARCHAR"
,
'formtype'
=>
"TEXT"
,
'op'
=>
"like"
,
'prefix'
=>
"%"
,
'suffix'
=>
"%"
,
'width'
=>
""
,
'value'
=>
""
);
$liste
[
"item"
][]
=
array
(
'field'
=>
"surname"
,
'datatype'
=>
"VARCHAR"
,
'formtype'
=>
"TEXT"
,
'op'
=>
"like"
,
'prefix'
=>
"%"
,
'suffix'
=>
"%"
,
'width'
=>
""
,
'value'
=>
""
);
$liste
[
"item"
][]
=
array
(
'field'
=>
"city"
,
'datatype'
=>
"VARCHAR"
,
'formtype'
=>
"TEXT"
,
'op'
=>
"like"
,
'prefix'
=>
"%"
,
'suffix'
=>
"%"
,
'width'
=>
""
,
'value'
=>
""
);
<?php
/*
Datatypes:
- INTEGER
- DOUBLE
- CURRENCY
- VARCHAR
- TEXT
- DATE
*/
// Name of the list
$liste
[
"name"
]
=
"
client
s"
;
// Database table
$liste
[
"table"
]
=
"
client
"
;
// Index index field of the database table
$liste
[
"table_idx"
]
=
"
client
_id"
;
// Search Field Prefix
$liste
[
"search_prefix"
]
=
"search_"
;
// Records per page
$liste
[
"records_per_page"
]
=
15
;
// Script File of the list
$liste
[
"file"
]
=
"
client
_list.php"
;
// Script file of the edit form
$liste
[
"edit_file"
]
=
"
client
_edit.php"
;
// Script File of the delete script
$liste
[
"delete_file"
]
=
"
client
_del.php"
;
// Paging Template
$liste
[
"paging_tpl"
]
=
"templates/paging.tpl.htm"
;
// Enable authe
$liste
[
"auth"
]
=
"yes"
;
/*****************************************************
* Suchfelder
*****************************************************/
$liste
[
"item"
][]
=
array
(
'field'
=>
"company"
,
'datatype'
=>
"VARCHAR"
,
'formtype'
=>
"TEXT"
,
'op'
=>
"like"
,
'prefix'
=>
"%"
,
'suffix'
=>
"%"
,
'width'
=>
""
,
'value'
=>
""
);
$liste
[
"item"
][]
=
array
(
'field'
=>
"firstname"
,
'datatype'
=>
"VARCHAR"
,
'formtype'
=>
"TEXT"
,
'op'
=>
"like"
,
'prefix'
=>
"%"
,
'suffix'
=>
"%"
,
'width'
=>
""
,
'value'
=>
""
);
$liste
[
"item"
][]
=
array
(
'field'
=>
"surname"
,
'datatype'
=>
"VARCHAR"
,
'formtype'
=>
"TEXT"
,
'op'
=>
"like"
,
'prefix'
=>
"%"
,
'suffix'
=>
"%"
,
'width'
=>
""
,
'value'
=>
""
);
$liste
[
"item"
][]
=
array
(
'field'
=>
"city"
,
'datatype'
=>
"VARCHAR"
,
'formtype'
=>
"TEXT"
,
'op'
=>
"like"
,
'prefix'
=>
"%"
,
'suffix'
=>
"%"
,
'width'
=>
""
,
'value'
=>
""
);
?>
\ No newline at end of file
interface/web/client/templates/client_edit_address.htm
deleted
100644 → 0
View file @
81d69be3
<table
width=
"500"
border=
"0"
cellspacing=
"0"
cellpadding=
"2"
>
<tr>
<td
width=
"126"
class=
"frmText11"
>
{tmpl_var name='company_txt'}:
</td>
<td
width=
"366"
class=
"frmText11"
><input
name=
"company"
type=
"text"
class=
"text"
value=
"{tmpl_var name='company'}"
size=
"30"
maxlength=
"255"
></td>
</tr>
<tr>
<td
width=
"126"
class=
"frmText11"
>
{tmpl_var name='title_txt'}:
</td>
<td
width=
"366"
class=
"frmText11"
>
<select
name=
"title"
class=
"text"
>
{tmpl_var name='title'}
</select>
</td>
</tr>
<tr>
<td
width=
"126"
class=
"frmText11"
>
{tmpl_var name='firstname_txt'}:
</td>
<td
width=
"366"
class=
"frmText11"
><input
name=
"firstname"
type=
"text"
class=
"text"
value=
"{tmpl_var name='firstname'}"
size=
"30"
maxlength=
"255"
></td>
</tr>
<tr>
<td
width=
"126"
class=
"frmText11"
>
{tmpl_var name='surname_txt'}:
</td>
<td
width=
"366"
class=
"frmText11"
><input
name=
"surname"
type=
"text"
class=
"text"
value=
"{tmpl_var name='surname'}"
size=
"30"
maxlength=
"255"
></td>
</tr>
<tr>
<td
width=
"126"
class=
"frmText11"
>
{tmpl_var name='street_txt'}:
</td>
<td
width=
"366"
class=
"frmText11"
><input
name=
"street"
type=
"text"
class=
"text"
value=
"{tmpl_var name='street'}"
size=
"30"
maxlength=
"255"
></td>
</tr>
<tr>
<td
width=
"126"
class=
"frmText11"
>
{tmpl_var name='zip_txt'}:
</td>
<td
width=
"366"
class=
"frmText11"
><input
name=
"zip"
type=
"text"
class=
"text"
value=
"{tmpl_var name='zip'}"
size=
"10"
maxlength=
"255"
></td>
</tr>
<tr>
<td
width=
"126"
class=
"frmText11"
>
{tmpl_var name='city_txt'}:
</td>
<td
width=
"366"
class=
"frmText11"
><input
name=
"city"
type=
"text"
class=
"text"
value=
"{tmpl_var name='city'}"
size=
"30"
maxlength=
"255"
></td>
</tr>
<tr>
<td
width=
"126"
class=
"frmText11"
>
{tmpl_var name='country_txt'}:
</td>
<td
width=
"366"
class=
"frmText11"
><input
name=
"country"
type=
"text"
class=
"text"
value=
"{tmpl_var name='country'}"
size=
"30"
maxlength=
"255"
></td>
</tr>
<tr>
<td
width=
"126"
class=
"frmText11"
>
{tmpl_var name='telephone_txt'}:
</td>
<td
width=
"366"
class=
"frmText11"
><input
name=
"telephone"
type=
"text"
class=
"text"
value=
"{tmpl_var name='telephone'}"
size=
"30"
maxlength=
"255"
></td>
</tr>
<tr>
<td
width=
"126"
class=
"frmText11"
>
{tmpl_var name='mobile_txt'}:
</td>
<td
width=
"366"
class=
"frmText11"
><input
name=
"mobile"
type=
"text"
class=
"text"
value=
"{tmpl_var name='mobile'}"
size=
"30"
maxlength=
"255"
></td>
</tr>
<tr>
<td
width=
"126"
class=
"frmText11"
>
{tmpl_var name='fax_txt'}:
</td>
<td
width=
"366"
class=
"frmText11"
><input
name=
"fax"
type=
"text"
class=
"text"
value=
"{tmpl_var name='fax'}"
size=
"30"
maxlength=
"255"
></td>
</tr>
<tr>
<td
width=
"126"
class=
"frmText11"
>
{tmpl_var name='email_txt'}:
</td>
<td
width=
"366"
class=
"frmText11"
><input
name=
"email"
type=
"text"
class=
"text"
value=
"{tmpl_var name='email'}"
size=
"30"
maxlength=
"255"
></td>
</tr>
<tr>
<td
width=
"126"
class=
"frmText11"
>
{tmpl_var name='internet_txt'}:
</td>
<td
width=
"366"
class=
"frmText11"
><input
name=
"internet"
type=
"text"
class=
"text"
value=
"{tmpl_var name='internet'}"
size=
"30"
maxlength=
"255"
></td>
</tr>
<tr>
<td
width=
"126"
class=
"frmText11"
>
{tmpl_var name='icq_txt'}:
</td>
<td
width=
"366"
class=
"frmText11"
><input
name=
"icq"
type=
"text"
class=
"text"
value=
"{tmpl_var name='icq'}"
size=
"30"
maxlength=
"255"
></td>
</tr>
<tr>
<td
width=
"126"
class=
"frmText11"
>
{tmpl_var name='notes_txt'}:
</td>
<td
width=
"366"
class=
"frmText11"
><textarea
name=
'notes'
cols=
'30'
rows=
'5'
>
{tmpl_var name='notes'}
</textarea></td>
</tr>
<tr>
<td
class=
"frmText11"
>
</td>