*** empty log message ***
This commit is contained in:
73
venice-data/velocity/user/profile.vm
Normal file
73
venice-data/velocity/user/profile.vm
Normal file
@@ -0,0 +1,73 @@
|
||||
#*
|
||||
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
|
||||
39
venice-data/velocity/user/user_photo.vm
Normal file
39
venice-data/velocity/user/user_photo.vm
Normal file
@@ -0,0 +1,39 @@
|
||||
#*
|
||||
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):
|
||||
*#
|
||||
#header1( "Set User Photo" )
|
||||
<form method="POST" enctype="multipart/form-data" action="#formatURL( "SERVLET" "profile_photo.js.vs" )">
|
||||
<input type="hidden" name="tgt" value="$target" />
|
||||
<table border="0" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td align="center"><input type="radio" name="selector" value="none" /></td>
|
||||
<td align="left">No photo</td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center"><input type="radio" name="selector" value="set" /></td>
|
||||
<td align="left">Set photo URL:</td>
|
||||
<td align="left"><input type="text" name="url" value="" size="64" maxlength="254" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center"><input type="radio" name="selector" value="upload" /></td>
|
||||
<td align="left">Upload photo:</td>
|
||||
<td align="left"><input type="file" name="image" value="" size="64" maxlength="254" /></td>
|
||||
</tr>
|
||||
</table>
|
||||
#button( "INPUT" "set" ) #button( "INPUT" "cancel" )
|
||||
</form>
|
||||
Reference in New Issue
Block a user