Posted on: 11/13/06 03:51am
By: Anonymous (ironmax)
<table class="inputTable"> <tr> <td width="100px"><label for="homepage">Homepage:</label></td> <td><input type="text" id="homepage" name="homepage" size="55" maxlength="32" value="http://www.spacequad.com"></td> </tr> <tr> <td width="100px"><label for="location">Location:</label></td> <td><input type="text" id="location" name="location" size="55" maxlength="32" value=""></td> </tr> <tr> <td width="100px"><label for="photo">Photo:</label></td> <td><input type="file" id="photo" name="photo" size="30"><br><br><img src="http://www.gravatar.com/avatar.php?gravatar_id=cd324b3f5c2501bcdfd310e80b5e6384&rating=R&default=http%3A%2F%2Fwww.spacequad.com%2Fimages%2Fyourphoto.gif" alt="" class="userphoto"></td> </tr> <tr> <td width="100px"><label for="sig">Signature:</label></td> <td><textarea id="sig" name="sig" style="width:100%" rows="4"></textarea></td> </tr> <tr> <td width="100px"><label for="about">Bio:</label></td> <td><textarea id="about" name="about" style="width:100%" rows="4"></textarea></td> </tr> <tr> <td width="100px"><label for="pgpkey">PGP Key:</label></td> <td><textarea id="pgpkey" name="pgpkey" style="width:100%" rows="4"></textarea></td> </tr> </table>
Posted on: 11/13/06 03:35pm
By: Dirk
Posted on: 11/13/06 06:23pm
By: Anonymous (ironmax)
// Use avatars from gravatar.com (if set = true). // A gravatar will only be requested if there is no uploaded photo. $_CONF['use_gravatar'] = true; // gravatar.com provides "movie-style" ratings of the avatars (G, PG, R, X). // Setting this to 'R' would allow avatars rated as G, PG, and R (but not X). $_CONF['gravatar_rating'] = 'R'; // Force a max. width when displaying the user photo (also used for gravatars) $_CONF['force_photo_width'] = 75; // Use this image when there's neither an uploaded photo nor a gravatar. // Should be the complete URL of the image. $_CONF['default_photo'] = 'http://www.spacequad.com/images/yourphoto.gif';
Posted on: 11/14/06 01:59am
By: Dirk