source: branches/version-2_12-multilang/data/Smarty/templates/sphone_en-US/products/review.tpl @ 22346

Revision 22346, 4.7 KB checked in by michael_nelson, 11 years ago (diff)

#1992 英文テキストを調整

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