Viewer Authentication Form Example

From Second Life Wiki
Jump to navigation Jump to search

Example Bare-Bones Viewer Authentication Form

<syntaxhighlight lang="html5"> <!DOCTYPE html> <html>

   <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>
   </head>
   <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>

</syntaxhighlight>