- added pause page
[opensuse:software-o-o.git] / app / views / order / new.rhtml
1 <%
2 @right_box = :iso
3 @page_title = "Order Promo DVD copies"
4 -%>
5 <style type="text/css"/>
6   table#promoformtbl *.mandatory {
7     background-color: #d99;
8   }
9
10   div.error {
11     padding: 3px;
12     color: #cff;
13     font-weight: bold;
14     background-color: #c00;
15   }
16     
17 </style>
18
19 <div>
20 <p>
21 You want to support openSUSE by spreading DVDs? On this page you can order the 
22 latest openSUSE PromoDVD. For more information what is on that DVD, please look 
23 at the wiki page <a href='http://en.opensuse.org/PromoDVD'>http://en.opensuse.org/PromoDVD</a>.
24 </p>
25 <p>
26 We offer them to spread openSUSE at events like LUG meetings, installfests, 
27 conferences but also institutions like schools and universities or for 
28 training purposes. For personal use please use software.opensuse.org and 
29 download your version. 
30 </p>
31 <p>
32 When the event is over, please provide photos if possible, send a link to 
33 opensuse-marketing at opensuse.org. This will also help you to promote it.
34 </p>
35
36 <p>
37 Because of the vast amount of request we can't process:<br>
38
39 <li>We can't send out single DVDs.</li>
40 <li>It's <b>not</b> for personal use.</li>
41 <li>It's <b>not</b> for your company to try out.</li>
42 <li>yes, offical DVDs look better, but this is no reason.</li>
43 <li>We are sorry about your slow internet connection, but we will still not send DVDs for personal use.</li>
44 </p>
45
46 <p>
47 Before you enter the needed information:
48 <ul>
49 <li>Please enter a <b>brief</b> reason why you need the DVDs and Provide a link of the event/purpose.</li>
50 <li>Shipping may take 2-3 weeks</li>
51 <li>Please provide a real name for screening.</li>
52 <li>Use latin characters only.</li>
53 <li>Your phone number is needed for the parcel service.</li>
54 <li>We try to keep you informed about the status of the shipment</li>
55 </ul>
56 </p>
57  
58   <p>Colored fields are mandatory</p>
59 </div>
60
61
62 <% if flash[:save_errors] -%>
63 <div class="error">
64   <%= flash[:save_errors].join("<br/>") %>
65 </div>
66 <% end -%>
67 <br/>
68 <% form_for :order, @order, :url => {:action => "save"} do |f| %>
69 <table id="promoformtbl">
70   <tr><td>Title: </td><td><%= f.select :title, %w(Mr. Mrs. Company) %></td></tr>
71   <tr><td>Name: </td><td><%= f.text_field :name, :class => "mandatory" %></td></tr>
72   <tr><td>Company: </td><td><%= f.text_field :company %></td></tr>
73   <tr><td>Street1: </td><td><%= f.text_field :street1, :class => "mandatory" %></td></tr>
74   <tr><td>Street2: </td><td> <%= f.text_field :street2 %></td></tr>
75   <tr><td>Zip </td><td><%= f.text_field :zip, :class => "mandatory" %></td></tr>
76   <tr><td>City </td><td><%= f.text_field :city, :class => "mandatory" %></td></tr>
77   <tr><td>County/State </td><td><%= f.text_field :county %></td></tr>
78   <tr><td>Country </td><td><%= f.text_field :country, :class => "mandatory" %></td></tr>
79   <tr><td>Phone number </td><td><%= f.text_field :phone, :class => "mandatory" %></td></tr>
80   <tr><td>E-Mail Address </td><td><%= f.text_field :email, :class => "mandatory" %></td></tr>
81   <tr><td>Amount of DVDs </td><td><%= f.text_field :amount, :class => "mandatory" %></td></tr>
82   <tr><td>Reason </td><td><%= f.text_area :reason, :class => "mandatory" %></td></tr>
83   <tr><td>Deadline </td><td><%= f.text_field :deadline, :class => "mandatory" %></td></tr>
84   <tr><td colspan=2><%= submit_tag %></td></tr>
85 </table>
86 <p>
87 All data is used only for sending DVDs and will not be spread to third parties. 
88 We store the data to inform the users if a new version is available. All 
89 requests have to be screened to fulfill the US export embargo. More information 
90 about the embargo and a list of countries at wikipedia 
91 <a href='http://en.wikipedia.org/wiki/United_States_embargoes'>http://en.wikipedia.org/wiki/United_States_embargoes</a>.
92
93 </p>
94 <% end %>