Viewer Authentication Form Example

From Second Life Wiki
Revision as of 00:42, 10 January 2008 by Teravus Ousley (talk | contribs) (→‎Example Viewer Authentication Form)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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="" />

<input class="input_over" type="submit" value="Connect" />
| =

</form> <script language="JavaScript">document.getElementById('firstname_input').focus();</script>

</body></html>