Viewer Authentication Form Example
From Second Life Wiki
Example Bare-Bones Viewer Authentication Form
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="Pragma" content="no-cache"> <title>Second Life Login</title>
<body><form action="/go.cgi" method="POST" id="login-form">
<fieldset id="firstname"><legend>First Name:</legend><input type="text" id="firstname_input" size="15" maxlength="100" name="username" value="" /></fieldset>
<fieldset id="lastname"><legend>Last Name:</legend><input type="text" size="15" maxlength="100" name="lastname" value="" /></fieldset>
<fieldset id="password"><legend>Password:</legend>
<input type="password" size="15" maxlength="100" name="password" value="" /> <input type="checkbox" name="remember_password" id="remember_password" value="" checked style="margin-left:0px;"/>
<label for="remember_password">Remember password</label> </fieldset>
<input type="hidden" id="grid" name="grid" value="" />
</form> <script language="JavaScript">document.getElementById('firstname_input').focus();</script>
</div>
</body></html>

