1 <!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.0 Strict//EN"
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3 <html xmlns=
"http://www.w3.org/1999/xhtml">
5 <meta http-equiv=
"content-type" content=
"text/html; charset=utf-8"/>
7 <link rel=
"stylesheet" href=
"/static/css/geochat.css" type=
"text/css" media=
"screen" title=
"no title" charset=
"utf-8">
8 <script src=
"http://maps.google.com/maps?file=api&v=2&key=ABQIAAAA5aiSIr40CaCgAL1qdBx_URT7PEZbmam_2zAsIoWwfh3Jj6aT1RRYLlAgQv4nC1zqXhjttDcaEzPmFA"
9 type=
"text/javascript"></script>
10 <script src=
"/static/js/jquery.js" type=
"text/javascript" charset=
"utf-8"></script>
11 <script src=
"/static/js/geochat.js" type=
"text/javascript" charset=
"utf-8"></script>
12 <script type=
"text/javascript">
14 'auth_url': '{{ auth_url }}',
15 'user_email': '{{ user_email }}',
16 'user_nickname': '{{ user_nickname }}',
17 'default_location': '{{ default_location }}',
18 'initial_latitude': '{{ initial_latitude }}',
19 'initial_longitude': '{{ initial_longitude }}',
20 'update_interval': 5000,
21 'error_interval': 30000
24 'marker': '/static/images/marker.png',
25 'marker-user': '/static/images/marker-lime.png'
32 <h1><a href=
"/">Geochat
</a></h1>
35 <strong>{{ user_email }}
</strong> |
37 <a href=
"/help" target=
"_blank">Help
</a> |
39 <a href=
"/settings">Settings
</a> |
41 <a href=
"{{ auth_url }}">{{ auth_text }}
</a>
48 <form id=
"chatform" action=
"#" onsubmit=
"say(this.chat); return false;">
49 <input type=
"text" name=
"chat" size=
"60" maxlength=
"255" />
50 <input type=
"submit" value=
"Chat" />
52 <form id=
"moveform" action=
"#" onsubmit=
"move(this.address.value); return false;">
53 <input type=
"text" name=
"address" id=
"address" size=
"20" />
54 <input type=
"submit" value=
"Move" />
60 <div id=
"log-entries"></div>