74 lines
2.8 KiB
Plaintext
74 lines
2.8 KiB
Plaintext
#*
|
|
The contents of this file are subject to the Mozilla Public License Version 1.1
|
|
(the "License"); you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at <http://www.mozilla.org/MPL/>.
|
|
|
|
Software distributed under the License is distributed on an "AS IS" basis, WITHOUT
|
|
WARRANTY OF ANY KIND, either express or implied. See the License for the specific
|
|
language governing rights and limitations under the License.
|
|
|
|
The Original Code is the Venice Web Communities System.
|
|
|
|
The Initial Developer of the Original Code is Eric J. Bowersox <erbo@silcom.com>,
|
|
for Silverwrist Design Studios. Portions created by Eric J. Bowersox are
|
|
Copyright (C) 2003 Eric J. Bowersox/Silverwrist Design Studios. All Rights Reserved.
|
|
|
|
Contributor(s):
|
|
*#
|
|
#comment( "Profile for user - UID=$uid" )
|
|
#header2( "User Profile:" "$username" )
|
|
<table border="0" cellpadding="6" cellspacing="0"><tr valign="top">
|
|
<td align="left" class="smcontent">
|
|
<p>#render( $photo )<br clear="left" /></p>
|
|
<p class="smcontent">
|
|
#if( $date_create )
|
|
Account created:<br />#formatDate( $date_create )<br />
|
|
#end
|
|
#if( $date_lastlogin )
|
|
Last login:<br />#formatDate( $date_lastlogin )<br />
|
|
#end
|
|
#if( $date_lastupdate )
|
|
Profile last updated:<br />#formatDate( $date_lastupdate )<br />
|
|
#end
|
|
</p>
|
|
</td>
|
|
<td align="left" class="content">
|
|
<b>#encodeHTML( "$fullname" )</b><br />
|
|
#if( $email )
|
|
E-mail: <a href="mailto:$email">#encodeHTML( "$email" )</a><br />
|
|
#end
|
|
#if( $url )
|
|
URL: <a href="$url" target="Wander">#encodeHTML( "$url" )</a><br />
|
|
#end
|
|
#if( $company )#encodeHTML( "$company" )<br />#end
|
|
#if( $addr1 )#encodeHTML( "$addr1" )<br />#end
|
|
#if( $addr2 )#encodeHTML( "$addr2" )<br />#end
|
|
#if( $addr_last )#encodeHTML( "$addr_last" )<br />#end
|
|
#if( $country )#encodeHTML( "$country" )<br />#end
|
|
#if( $phone )Phone: #encodeHTML( "$phone" )<br />#end
|
|
#if( $fax )Fax: #encodeHTML( "$fax" )<br />#end
|
|
#if( $mobile )Mobile: #encodeHTML( "$mobile" )<br />#end
|
|
</td>
|
|
|
|
</tr></table><br />
|
|
|
|
#if( $description )
|
|
<em>#encodeHTML( "$description" )</em>
|
|
#end
|
|
|
|
#if( $quick_email )
|
|
<hr /><b>Send Quick E-Mail To ${username}:</b><br />
|
|
<form method="POST" action="#formatURL( "SERVLET" "quick_email.js.vs" )">
|
|
<input type="hidden" name="to_uid" value="$uid" />
|
|
<table border="0" cellpadding="0">
|
|
<tr valign="middle"><td align="left" class="content">
|
|
Subject: <input type="text" name="subj" size="65" maxlength="255" value="" />
|
|
</td></tr>
|
|
<tr valign="middle"><td align="left">
|
|
<textarea name="pb" wrap="hard" rows="7" cols="80"></textarea>
|
|
</td></tr>
|
|
<tr valign="middle"><td align="left" class="content">#button( "INPUT" "send.email" )</td></tr>
|
|
</table>
|
|
</form>
|
|
#end
|