forked from dounokouno/TransmitMail
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfirm_kobetsu.html
More file actions
executable file
·65 lines (65 loc) · 2.84 KB
/
Copy pathconfirm_kobetsu.html
File metadata and controls
executable file
·65 lines (65 loc) · 2.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{include:header.html}
<div id="content">
<div class="container">
<div class="section">
<h2>入力内容の確認</h2>
<p>以下の内容でよろしければ、ページ下部の送信ボタンを押してください。<br>
誤りがある場合は、前画面に戻って再度ご入力ください。</p>
<table width="100%" class="alpha">
<tr>
<th width="300">{$GET値取得サンプル.key} </th>
<td>{$GET値取得サンプル.value} </td>
</tr>
<tr>
<th>{$シングルラインインプット.key} </th>
<td>{$シングルラインインプット.value} </td>
</tr>
<tr>
<th>{$マルチラインインプット.key} </th>
<td>{$マルチラインインプット.value.nl2br} </td>
</tr>
<tr>
<th>{$ラジオボタン.key} </th>
<td>{$ラジオボタン.value} </td>
</tr>
<tr>
<th>{$チェックボックス.key} </th>
<td>{$チェックボックス.value} </td>
</tr>
<tr>
<th>{$セレクトメニュー.key} </th>
<td>{$セレクトメニュー.value} </td>
</tr>
<tr>
<th>{$マルチプルセレクトメニュー.key} </th>
<td>{$マルチプルセレクトメニュー.value} </td>
</tr>
<tr>
<th>チェックボックスを配列で受け取り、<br>
ul要素とli要素でマークアップする</th>
<td>
<ul>
{loop:$チェックボックス.array}
<li>{$チェックボックス.array[]}</li>
{/loop:$チェックボックス.array}
</ul>
</td>
</tr>
</table>
<div class="center">
<form method="post" class="inline">
{$hiddens}
<input type="hidden" name="page_name" value="input">
<input type="submit" value="入力画面に戻る">
</form>
<form method="post" class="inline">
{$hiddens}
<input type="hidden" name="page_name" value="finish">
<input type="submit" value="送信する">
</form>
</div>
</div>
</div>
</div>
{include:footer.html}