~dooferlad/+junk/license_protection_2

« back to all changes in this revision

Viewing changes to templates/licenses/ste.html

  • Committer: James Tunnicliffe
  • Date: 2012-06-22 13:21:49 UTC
  • Revision ID: james.tunnicliffe@linaro.org-20120622132149-vxjwsnkeg4ka70n7
Add licenses and have correct license text processing implemented

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{% extends "license.html" %}
 
2
 
 
3
{% block header %}
 
4
<title>License Agreement</title>
 
5
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
 
6
<style language="text/css">
 
7
  html, body {
 
8
    background: white;
 
9
    color: black;
 
10
    margin: 0;
 
11
    padding: 0;
 
12
    font-size: 11pt;
 
13
    font-family: Sans;
 
14
  }
 
15
 
 
16
  div#head {
 
17
    height: 180px;
 
18
    width: 100%;
 
19
    background-image: url(/static/igloo-bg.png);
 
20
    background-repeat: repeat-x;
 
21
  }
 
22
 
 
23
  h1 {
 
24
    height: 180px;
 
25
    padding: 2em;
 
26
    padding-left: 180px;
 
27
    margin: 0;
 
28
    margin-right: 1em;
 
29
    margin-left: 1em;
 
30
    color:white;
 
31
    font-size: 140%;
 
32
    font-weight: bold;
 
33
    text-align: left;
 
34
    background-image: url(/static/igloo.png);
 
35
    background-repeat: no-repeat;
 
36
  }
 
37
 
 
38
  #content {
 
39
    margin: 0 auto;
 
40
    min-width: 600px;
 
41
    max-width: 920px;
 
42
  }
 
43
 
 
44
  h2 {
 
45
    font-size: 120%;
 
46
  }
 
47
 
 
48
  #license-text {
 
49
    background: white;
 
50
    color: black;
 
51
    margin: 2em;
 
52
    padding: 2em;
 
53
    height: 50%;
 
54
    overflow: scroll;
 
55
    text-align: left;
 
56
    -moz-border-radius: 10px;
 
57
    -webkit-border-radius: 10px;
 
58
    border-radius: 10px;
 
59
  }
 
60
 
 
61
  #actions {
 
62
    padding: 2em;
 
63
    font-size: 80%;
 
64
    margin-bottom: 2em;
 
65
  }
 
66
 
 
67
  #actions .button {
 
68
    background: #08e;
 
69
    color: white;
 
70
    text-decoration: none;
 
71
    font-weight: bold;
 
72
    padding: 10px;
 
73
    margin-left: 10px;
 
74
    float: right;
 
75
    font-size: 110%;
 
76
    -moz-border-radius: 4px;
 
77
    -webkit-border-radius: 4px;
 
78
    border-radius: 4px;
 
79
  }
 
80
 
 
81
  #actions .button-decline:hover {
 
82
    background: #09f;
 
83
  }
 
84
 
 
85
  #actions .button-accept {
 
86
    background: #8b4;
 
87
  }
 
88
 
 
89
  #actions .button-accept:hover {
 
90
    background: #9c5;
 
91
  }
 
92
</style>
 
93
{% endblock %}
 
94
 
 
95
{% block content-header %}
 
96
<div id="head">
 
97
<h1>
 
98
  SNOWBALL CLICK-WRAP
 
99
  LIMITED LICENSE AGREEMENT FOR APPLICATION DEVELOPERS
 
100
  ("Agreement") ST-Ericsson 2011-10-27
 
101
</h1>
 
102
 
 
103
 
 
104
</div>
 
105
 
 
106
<div id="content">
 
107
 
 
108
<div id="license-text">
 
109
{% endblock %}
 
110
{% block content-footer-top %}
 
111
  </div><!-- license-text -->
 
112
 
 
113
  <div id="actions">
 
114
 
 
115
  <div style="float: left;">If accepting the license doesn't work, enable
 
116
    cookies in your browser.</div><br />
 
117
{% endblock %}
 
118
{% block content-footer-bottom %}
 
119
  </div>
 
120
 
 
121
  </div><!-- content -->
 
122
{% endblock %}