Last change
on this file since 460 was 460, checked in by Nicholas Riley, 17 years ago |
Simple Google App Engine project - client for Vonage Click2Call.
|
File size:
1.1 KB
|
Rev | Line | |
---|
[460] | 1 | <html>
|
---|
| 2 | <head>
|
---|
| 3 | <title>the Rileys: Call Us</title>
|
---|
| 4 | <link href="http://rileys.us/css/rileys.css" rel="stylesheet" type="text/css">
|
---|
| 5 | </head>
|
---|
| 6 | <script language="JavaScript"><!--
|
---|
| 7 | function firstFocus() {
|
---|
| 8 | var df = document.forms;
|
---|
| 9 | if (df.length > 0) {
|
---|
| 10 | var f = df[0];
|
---|
| 11 | var fe = f.elements;
|
---|
| 12 | for (i=0;i<f.length;i++) {
|
---|
| 13 | if ((fe[i].type=="text")||(fe[i].type=="textarea")||(fe.type.toString().charAt(0)=="s")) {
|
---|
| 14 | fe[i].focus();
|
---|
| 15 | break;
|
---|
| 16 | }
|
---|
| 17 | }
|
---|
| 18 | }
|
---|
| 19 | } // -->
|
---|
| 20 | </script>
|
---|
| 21 | <body bgcolor="#fafafa" onLoad="firstFocus()">
|
---|
| 22 | <p><img name="therileys" src="http://rileys.us/images/the-rileys.png" width="205" height="48" border="0" alt="">
|
---|
| 23 | </p>
|
---|
| 24 | <h1>{% block title %}Call Us {% endblock %}</h1>
|
---|
| 25 | <p>
|
---|
| 26 | {% if unavailable %}
|
---|
| 27 | {{ unavailable }}
|
---|
| 28 | <p>
|
---|
| 29 | <a href="{{ logout_url }}">Log in again?</a>
|
---|
| 30 | {% else %}
|
---|
| 31 | {{ message }}
|
---|
| 32 | {% if error %}
|
---|
| 33 | <div style="color: red">{{ error }}</div>
|
---|
| 34 | {% endif %}
|
---|
| 35 | {% if failure %}
|
---|
| 36 | <pre>{{ failure }}</pre>
|
---|
| 37 | {% endif %}
|
---|
| 38 | {% block available %}{% endblock %}
|
---|
| 39 | {% endif %}
|
---|
| 40 | <p class="caption">Last updated on 8 April 2008.</p>
|
---|
| 41 | </body>
|
---|
| 42 | </html>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.