aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/http_loginform.html.example
diff options
context:
space:
mode:
authorTeravus Ovares2008-01-09 22:05:28 +0000
committerTeravus Ovares2008-01-09 22:05:28 +0000
commit85fe8ed0857c075ebefabbad8a670499e047f41a (patch)
treec43185637f9290a3b70c02a4c1265d9397590b27 /bin/http_loginform.html.example
parent* This may be broken.. it hasn't been tested, however I wanted to get the l... (diff)
downloadopensim-SC_OLD-85fe8ed0857c075ebefabbad8a670499e047f41a.zip
opensim-SC_OLD-85fe8ed0857c075ebefabbad8a670499e047f41a.tar.gz
opensim-SC_OLD-85fe8ed0857c075ebefabbad8a670499e047f41a.tar.bz2
opensim-SC_OLD-85fe8ed0857c075ebefabbad8a670499e047f41a.tar.xz
* This update enables the web_login method.
* Remember, the client doesn't support web_login to other grids in the current RC, however the next RC will.
Diffstat (limited to 'bin/http_loginform.html.example')
-rw-r--r--bin/http_loginform.html.example60
1 files changed, 60 insertions, 0 deletions
diff --git a/bin/http_loginform.html.example b/bin/http_loginform.html.example
new file mode 100644
index 0000000..16655de
--- /dev/null
+++ b/bin/http_loginform.html.example
@@ -0,0 +1,60 @@
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2<html xmlns="http://www.w3.org/1999/xhtml">
3<head>
4<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5<meta http-equiv="cache-control" content="no-cache">
6<meta http-equiv="Pragma" content="no-cache">
7<title>Second Life Login</title>
8<body><br />
9<div id="login_box">
10
11<form action="/" method="GET" id="login-form">
12
13<div id="message">[$errors]</div>
14<fieldset id="firstname">
15<legend>First Name:</legend>
16<input type="text" id="firstname_input" size="15" maxlength="100" name="username" value="[$firstname]" />
17</fieldset>
18<fieldset id="lastname">
19<legend>Last Name:</legend>
20<input type="text" size="15" maxlength="100" name="lastname" value="[$lastname]" />
21</fieldset>
22<fieldset id="password">
23<legend>Password:</legend>
24<table cellspacing="0" cellpadding="0" border="0">
25<tr>
26<td colspan="2"><input type="password" size="15" maxlength="100" name="password" value="[$password]" /></td>
27</tr>
28<tr>
29<td valign="middle"><input type="checkbox" name="remember_password" id="remember_password" [$remember_password] style="margin-left:0px;"/></td>
30<td><label for="remember_password">Remember password</label></td>";
31</tr>
32</table>
33</fieldset>
34<input type="hidden" name="show_login_form" value="FALSE" />
35<input type="hidden" name="method" value="login" />
36<input type="hidden" id="grid" name="grid" value="[$grid]" />
37<input type="hidden" id="region" name="region" value="[$region]" />
38<input type="hidden" id="location" name="location" value="[$location]" />
39<input type="hidden" id="channel" name="channel" value="[$channel]" />
40<input type="hidden" id="version" name="version" value="[$version]" />
41<input type="hidden" id="lang" name="lang" value="[$lang]" />
42<div id="submitbtn">
43<input class="input_over" type="submit" value="Connect" />
44</div>
45<div id="connecting" style="visibility:hidden"> Connecting...</div>
46
47<div id="helplinks">
48<a href="http://www.secondlife.com/join/index.php" target="_blank">Create new account</a> |
49<a href="http://www.secondlife.com/account/request.php" target="_blank">Forgot password?</a>
50</div>
51
52<div id="channelinfo"> [$channel] | [$version]=[$lang]</div>
53</form>
54<script language="JavaScript">
55document.getElementById('firstname_input').focus();
56</script>
57</div>
58</div>
59</body>
60</html> \ No newline at end of file