aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/http_loginform.html.example
diff options
context:
space:
mode:
authorUbitUmarov2015-09-01 11:43:07 +0100
committerUbitUmarov2015-09-01 11:43:07 +0100
commitfb78b182520fc9bb0f971afd0322029c70278ea6 (patch)
treeb4e30d383938fdeef8c92d1d1c2f44bb61d329bd /bin/http_loginform.html.example
parentlixo (diff)
parentMantis #7713: fixed bug introduced by 1st MOSES patch. (diff)
downloadopensim-SC_OLD-fb78b182520fc9bb0f971afd0322029c70278ea6.zip
opensim-SC_OLD-fb78b182520fc9bb0f971afd0322029c70278ea6.tar.gz
opensim-SC_OLD-fb78b182520fc9bb0f971afd0322029c70278ea6.tar.bz2
opensim-SC_OLD-fb78b182520fc9bb0f971afd0322029c70278ea6.tar.xz
Merge remote-tracking branch 'os/master'
Diffstat (limited to 'bin/http_loginform.html.example')
-rw-r--r--bin/http_loginform.html.example61
1 files changed, 61 insertions, 0 deletions
diff --git a/bin/http_loginform.html.example b/bin/http_loginform.html.example
new file mode 100644
index 0000000..54f8f09
--- /dev/null
+++ b/bin/http_loginform.html.example
@@ -0,0 +1,61 @@
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>OpenSim Login</title>
8<body><br />
9<div id="login_box">
10
11<form action="/go.cgi" 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="#new account link" target="_blank">Create new account</a> |
49<a href="#forgot password link" target="_blank">Forgot password?</a>
50---></div>
51
52
53<div id="channelinfo"> [$channel] | [$version]=[$lang]</div>
54</form>
55<script language="JavaScript">
56document.getElementById('firstname_input').focus();
57</script>
58</div>
59</div>
60</body>
61</html>