summaryrefslogtreecommitdiffstats
path: root/webapp/templates/settings_welcome_3_corporate.html
blob: 87340c4d31b36f8e1e3fc2b01156b4e0ed623d4d (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{%extends "base.html"%}
{%block title1%}Settings -{%endblock%}
{%block body%}
<h2>Hi!</h2>

<form name="welcome" action="{{post_url}}" method="POST">

{{form.xsrf}}
{%if form.xsrf.errors%}
<ul>
  {%for e in form.xsrf.errors%}
    <li>{{e}}</li>
  {%endfor%}
</ul>
{%endif%}

{{form.dest}}
<input type="hidden" name="step" value="3corp" />

<p>Hi, welcome to Android.  Before we can get going, we need a little bit of
information from you.</p>

<hr/>

<table class="largeform">
<tr><th class="largeform_field">Contributor License Grant</th></tr>
<tr><td class="largeform_field">
Please print out this document:
<div style="padding-left: 30px; font-family: monospace;"><br/><a href="/static/corp_cla.html" target="_blank">Corporate Contributor License Agreement</a></div>

<p>Next have an authorized person sign it.

<p>Then send it via one of the following methods:

<p>Email a scanned copy to:
<div style="padding-left: 30px; font-family: monospace;">
    cla-submissions@google.com
</div>

<p>Fax to:
<div style="padding-left: 30px; font-family: monospace;">
    (650) 887-1625
</div>

<p>Or via post to:

<div style="padding-left: 30px; font-family: monospace;">
    Google Inc.<br/>
    Attn: Open Source Program Office<br/>
    1600 Amphitheatre Pkwy<br/>
    Building 43<br/>
    Mountain View, CA 94043<br/>
    U.S.A.<br/>
</div>

<p>We will contact you with further details when we receive your completed paperwork.

</td></tr>
</table>
<hr/>


<input type="button" name="back" value="Back" onclick="document.welcome.submit();">
<input type="submit" name="continue" value="Continue">

</form>

{%endblock%}