~dooferlad/+junk/license_protection_2

« back to all changes in this revision

Viewing changes to templates/licenses/samsung.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: #aaa;
 
9
    color: black;
 
10
    margin: 0;
 
11
    padding: 0;
 
12
    font-size: 11pt;
 
13
    font-family: Sans;
 
14
  }
 
15
 
 
16
  div#head {
 
17
    height: 120px;
 
18
    background: #e80;
 
19
    padding: 2em;
 
20
  }
 
21
 
 
22
  h1 {
 
23
    padding-left: 200px;
 
24
    margin: 0;
 
25
    color: white;
 
26
    font-size: 140%;
 
27
    font-weight: bold;
 
28
    text-align: center;
 
29
    background-image: url(/static/exynos.png);
 
30
    background-repeat: no-repeat;
 
31
    height: 109px;
 
32
  }
 
33
 
 
34
  #content {
 
35
    margin: 0 auto;
 
36
    min-width: 600px;
 
37
    max-width: 920px;
 
38
  }
 
39
 
 
40
  h2 {
 
41
    font-size: 120%;
 
42
  }
 
43
 
 
44
  #license-text {
 
45
    background: white;
 
46
    color: black;
 
47
    margin: 2em;
 
48
    padding: 2em;
 
49
    overflow: scroll;
 
50
    text-align: left;
 
51
    -moz-border-radius: 10px;
 
52
    -webkit-border-radius: 10px;
 
53
    border-radius: 10px;
 
54
  }
 
55
 
 
56
  #actions {
 
57
    padding: 2em;
 
58
    font-size: 80%;
 
59
    margin-bottom: 4em;
 
60
  }
 
61
 
 
62
  #actions .button {
 
63
    background: #e80;
 
64
    color: white;
 
65
    text-decoration: none;
 
66
    font-weight: bold;
 
67
    padding: 10px;
 
68
    margin-left: 10px;
 
69
    float: right;
 
70
    font-size: 110%;
 
71
    -moz-border-radius: 4px;
 
72
    -webkit-border-radius: 4px;
 
73
    border-radius: 4px;
 
74
  }
 
75
 
 
76
  #actions .button-decline:hover {
 
77
    background: #f90;
 
78
  }
 
79
 
 
80
  #actions .button-accept {
 
81
    background: #8b4;
 
82
  }
 
83
 
 
84
  #actions .button-accept:hover {
 
85
    background: #9c5;
 
86
  }
 
87
</style>
 
88
{% endblock %}
 
89
 
 
90
{% block content-header %}
 
91
<div id="head">
 
92
<h1>
 
93
  SAMSUNG DEVELOPMENT TOOL KIT END-USER LICENSE AGREEMENT FOR LINARO
 
94
  DEVELOPERS (“Agreement”)
 
95
</h1>
 
96
</div>
 
97
 
 
98
<div id="content">
 
99
 
 
100
<div id="license-text">
 
101
{% endblock %}
 
102
{% block content-footer-top %}
 
103
</div><!-- license-text -->
 
104
 
 
105
<div id="actions">
 
106
 
 
107
<div style="float: left;">If accepting the license doesn't work, enable
 
108
cookies in your browser.</div><br />
 
109
{% endblock %}
 
110
{% block content-footer-bottom %}
 
111
</div>
 
112
 
 
113
</div><!-- content -->
 
114
{% endblock %}