julen / pootle

Web-based translation and translation management tool

This URL has Read+Write access

pootle / templates / register.html
100644 88 lines (73 sloc) 3.509 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?xml version="1.0" encoding="UTF-8"?>
<?python
import pootlepage, navbar
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns:py="http://purl.org/kid/ns#" xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
  <meta name="generator" content="HTML Tidy for Linux/x86 (vers 1st September 2004), see www.w3.org" />
 
  <title py:content="pagetitle">Pootle Registration</title>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  <link rel="stylesheet" type="text/css" href="${baseurl}pootle.css" />
  <link rel="shortcut icon" href="${baseurl}favicon.ico" />
  <!--[if lt IE 7.]>
<script defer type="text/javascript" src="${baseurl}js/correctpng.js"></script>
<![endif]-->
</head>
 
<body bgcolor="#FFFFFF">
  <div id="abovefooter">
  <div py:replace="pootlepage.banner(instancetitle, links, session, uidir, uilanguage, baseurl)"/>
 
  <div id="content" dir="$uidir" lang="$uilanguage">
    <div class="intro" py:content="introtext">
      Please enter your registration details
    </div>
 
    <form action="" enctype="multipart/form-data" method="post" name="register" id="register">
      <table cellpadding="1" width="70%" border="0" cellspacing="1">
        <tr>
          <td colspan="1" style="width: 33%" rowspan="1" valign="top">
            <span title="${username_tooltip}" py:content="username_title">Username</span>
          </td>
 
          <td colspan="1" style="width: 66%" rowspan="1" valign="top">
            <input style="width: 100%" type="text" name="username" value="${username}" />
          </td>
        </tr>
 
        <tr>
          <td colspan="1" style="width: 33%" rowspan="1" valign="top">
            <span title="${password_tooltip}" py:content="password_title">Password</span>
          </td>
 
          <td colspan="1" style="width: 66%" rowspan="1" valign="top">
            <input style="width: 100%" type="password" name="password" value="${password}" />
          </td>
        </tr>
 
        <tr>
          <td colspan="1" style="width: 33%" rowspan="1" valign="top">
            <span title="${passwordconfirm_tooltip}" py:content="passwordconfirm_title">Password (Confirm)</span>
          </td>
 
          <td colspan="1" style="width: 66%" rowspan="1" valign="top">
            <input style="width: 100%" type="password" name="passwordconfirm" value="${passwordconfirm}" />
          </td>
        </tr>
 
        <tr>
          <td colspan="1" style="width: 33%" rowspan="1" valign="top">
            <span title="${fullname_tooltip}" py:content="fullname_title">Full Name</span>
          </td>
 
          <td colspan="1" style="width: 66%" rowspan="1" valign="top">
            <input style="width: 100%" type="text" name="name" value="${fullname}" />
          </td>
        </tr>
 
        <tr>
          <td colspan="1" style="width: 33%" rowspan="1" valign="top">
            <span title="${email_tooltip}" py:content="email_title">Email Address</span>
          </td>
 
          <td colspan="1" style="width: 66%" rowspan="1" valign="top">
            <input style="width: 100%" type="text" name="email" value="${email}" />
          </td>
        </tr>
      </table><input type="submit" name="register" value="${register_text}" />
    </form>
  </div>
 
  </div>
  <div py:replace="pootlepage.user_links(links, session, uidir, uilanguage, baseurl)"/>
  <div py:replace="pootlepage.about(aboutlink, uidir, uilanguage, baseurl)"/>
</body>
</html>