source: branches/version-2_12-multilang/data/Smarty/templates/default_en/products/review.tpl @ 22175

Revision 22175, 4.4 KB checked in by h_yoshimoto, 11 years ago (diff)

#1996 テキストボタン画像のCSS化を一旦コミット

Line 
1<!--{*
2/*
3 * This file is part of EC-CUBE
4 *
5 * Copyright(c) 2000-2012 LOCKON CO.,LTD. All Rights Reserved.
6 *
7 * http://www.lockon.co.jp/
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22 */
23*}-->
24
25<!--{include file="`$smarty.const.TEMPLATE_REALDIR`popup_header.tpl" subtitle="Form for customer's opinion (input page)"}-->
26
27<div id="window_area">
28    <h2 class="title">Form for customer's opinion</h2>
29    <p class="windowtext">Please provide your opinions and thoughts regarding the product below.<br />
30        Items marked with "<span class="attention">*</span>" require input.<br />
31        After inputting, click the "To confirmation page" button at the very bottom.</p>
32    <form name="form1" method="post" action="?">
33    <input type="hidden" name="<!--{$smarty.const.TRANSACTION_ID_NAME}-->" value="<!--{$transactionid}-->" />
34    <input type="hidden" name="mode" value="confirm" />
35    <input type="hidden" name="product_id" value="<!--{$arrForm.product_id|h}-->" />
36    <table summary="Form for customer's opinion">
37        <col width="30%" />
38        <col width="70%" />
39        <tr>
40            <th>Product name</th>
41            <td><!--{$arrForm.name|h}--></td>
42        </tr>
43        <tr>
44            <th>Poster name<span class="attention">*</span></th>
45            <td><span class="attention"><!--{$arrErr.reviewer_name}--></span><input type="text" name="reviewer_name" value="<!--{$arrForm.reviewer_name|h}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" style="<!--{$arrErr.reviewer_name|sfGetErrorColor}-->" class="box350" /></td>
46        </tr>
47        <tr>
48            <th>Poster URL</th>
49            <td><span class="attention"><!--{$arrErr.reviewer_url}--></span><input type="text" name="reviewer_url" value="<!--{$arrForm.reviewer_url|h}-->" maxlength="<!--{$smarty.const.MTEXT_LEN}-->" style="<!--{$arrErr.reviewer_url|sfGetErrorColor}-->" class="box350" /></td>
50        </tr>
51        <tr>
52            <th>Gender</th>
53            <td>
54                <input type="radio" name="sex" id="man" value="1" <!--{if $arrForm.sex eq 1}--> checked="checked"<!--{/if}--> /><label for="man">Male</label>&nbsp;
55                <input type="radio" name="sex" id="woman" value="2" <!--{if $arrForm.sex eq 2}--> checked="checked"<!--{/if}--> /><label for="woman">Female</label>
56            </td>
57        </tr>
58        <tr>
59            <th>Recommendation level<span class="attention">*</span></th>
60            <td>
61                <span class="attention"><!--{$arrErr.recommend_level}--></span>
62                <select name="recommend_level" style="<!--{$arrErr.recommend_level|sfGetErrorColor}-->">
63                    <option value="" selected="selected">Please make a selection</option>
64                        <!--{html_options options=$arrRECOMMEND selected=$arrForm.recommend_level}-->
65                </select>
66            </td>
67        </tr>
68        <tr>
69            <th>Title<span class="attention">*</span></th>
70            <td>
71                <span class="attention"><!--{$arrErr.title}--></span>
72                <input type="text" name="title" value="<!--{$arrForm.title|h}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" style="<!--{$arrErr.title|sfGetErrorColor}-->" class="box350" />
73            </td>
74        </tr>
75        <tr>
76            <th>Comment<span class="attention">*</span></th>
77            <td>
78                <span class="attention"><!--{$arrErr.comment}--></span>
79                <textarea name="comment" cols="50" rows="10" style="<!--{$arrErr.comment|sfGetErrorColor}-->" class="area350"><!--{"\n"}--><!--{$arrForm.comment|h}--></textarea>
80            </td>
81        </tr>
82    </table>
83    <div class="btn_area">
84        <ul>
85            <li><button class="bt02">To confirmation page</button></li>
86        </ul>
87    </div>
88    </form>
89</div>
90
91<!--{include file="`$smarty.const.TEMPLATE_REALDIR`popup_footer.tpl"}-->
Note: See TracBrowser for help on using the repository browser.