Home | History | Annotate | Download | only in templates
      1 <!DOCTYPE html>
      2 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
      3 <!--
      4  * Copyright (C) 2010 The Android Open Source Project
      5  *
      6  * Licensed under the Apache License, Version 2.0 (the "License"); you may not
      7  * use this file except in compliance with the License. You may obtain a copy of
      8  * the License at
      9  *
     10  * http://www.apache.org/licenses/LICENSE-2.0
     11  *
     12  * Unless required by applicable law or agreed to in writing, software
     13  * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
     14  * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
     15  * License for the specific language governing permissions and limitations under
     16  * the License.
     17 -->
     18     <head>
     19         <title>SampleSync: {{ title }}</title>
     20         <link type="text/css" rel="stylesheet" href="/static/css/main.css" media="screen" />
     21     </head>
     22     <body>
     23         <h1>SampleSync: {{ header }}</h1>
     24         <form method="POST" action="{{ action }}">
     25             <table class="form" cellpadding="0" cellspacing="0">
     26               {{ form_data_rows }}
     27             </table>
     28             <input type="submit" name="Save" value="Save Changes" />
     29             <input type="button" name="Cancel" value="Cancel" onclick="document.location='/';return false;" />
     30             {% if has_contactId %}
     31             <input type="hidden" name="id" value="{{ contactId }}" />
     32             {% endif %}
     33             {% if has_handle %}
     34             <input type="hidden" name="username" value="{{ handle }}" />
     35             {% endif %}
     36         </form>
     37     </body>
     38 </html>
     39