summaryrefslogtreecommitdiff
path: root/templates/confirm.pt
blob: a0dd6f941023b556242186144747959d16e0b14f (plain)
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
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns:tal="http://xml.zope.org/namespaces/tal"
      xmlns:metal="http://xml.zope.org/namespaces/metal"
      metal:use-macro="standard_template/macros/page">
  <metal:fill fill-slot="body">

    <form tal:attributes="action app/url_path" method="POST">
      <input type="hidden" name=":action" value="user" />
      <input type="hidden" name="agree_shown" value="1" />
      <input type="hidden" name="otk" tal:attributes="value data/otk" />
      <p>
        <b>User name: <span tal:replace="data/user" /></b>
      </p>
      <p>
        By registering to upload content to PyPI, I agree and affirmatively
        acknowledge the following:
      </p>
      <ol>
        <li>
          Content is restricted to Python packages and related information only.
        </li>
        <li>
          Any content uploaded to PyPI is provided on a non-confidential basis.
        </li>
        <li>
          The PSF is free to use or disseminate any content that I upload on an
          unrestricted basis for any purpose. In particular, the PSF and all
          other users of the web site are granted an irrevocable, worldwide,
          royalty-free, nonexclusive license to reproduce, distribute, transmit,
          display, perform, and publish the content, including in digital form.
        </li>
        <li>
          I represent and warrant that I have complied with all government
          regulations concerning the transfer or export of any content I upload
          to PyPI.  In particular, if I am subject to United States law, I
          represent and warrant that I have obtained the proper governmental
          authorization for the export of the content I upload. I further affirm
          that any content I provide is not intended for use by a government
          end-user as defined in part 772 of the United States Export
          Administration Regulations.
        </li>
      </ol>
      <p><input type="checkbox" name="agree"> I agree</input></p>
      <p><input type="submit" value="Confirm" /></p>
    </form>
  </metal:fill>
</html>