-
Notifications
You must be signed in to change notification settings - Fork 49
/
confirm.html
executable file
·40 lines (40 loc) · 1.67 KB
/
confirm.html
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
{include:header.html}
<div id="content">
<div class="container">
<div class="section">
<h2>入力内容の確認</h2>
<p>以下の内容でよろしければ、ページ下部の送信ボタンを押してください。<br>
誤りがある場合は、前画面に戻って再度ご入力ください。</p>
<table width="100%" class="alpha">
{loop:$params}
<tr>
<th width="300">{$params[].key} </th>
<td>{$params[].value.nl2br} </td>
</tr>
{/loop:$params}
{loop:$files}
<tr>
<th>{$files[].key} </th>
<td>{$files[].name}<br>
<img src="index.php?file={$files[].tmp_name}" width="300"><br>
<a href="index.php?file={$files[].tmp_name}" target="_blank" class="external">画像を別ウィンドウで開く</a></td>
</tr>
{/loop:$files}
</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}