forked from dounokouno/TransmitMail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
confirm.html
executable file
·53 lines (53 loc) · 2.02 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
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>入力内容の確認 | TransmitMail サンプル</title>
<link rel="stylesheet" href="http://etc.dounokouno.com/ttXHTMLTemplate/css/screen.css">
</head>
<body class="home">
<div id="header">
<div class="container">
<h1>TransmitMail サンプル</h1>
</div>
</div>
<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" action="index.php" class="inline">
{$hiddens}
<input type="hidden" name="page" value="input">
<input type="submit" value="入力画面に戻る">
</form>
<form method="post" action="index.php" class="inline">
{$hiddens}
<input type="hidden" name="page" value="finish">
<input type="submit" value="送信する">
</form>
</div>
</div>
</div>
</div>
</body>
</html>