OSDN Git Service

git-svn-id: https://svn.sourceforge.jp/svnroot/nucleus-jp/plugin@1020 1ca29b6e-896d...
[nucleus-jp/nucleus-plugins.git] / NP_TrackBack / branches / DOM-branch / trackback / japanese-utf8.templates / form.html
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2 <html>
3         <head>
4                 <title>TrackBackの手動送信</title>
5                 <link rel="stylesheet" type="text/css" href="<?php echo $CONF['AdminURL']?>styles/bookmarklet.css" />
6         </head>
7         
8         <body>
9                 <h1>TrackBackの手動送信</h1>
10 <?php if ($success): ?>
11                 <p>
12                         <strong>トラックバックの送信が完了しました</strong>
13                 </p>
14 <?php endif; ?>
15 <?php if ($error): ?>
16                 <p>
17                         <strong><?php echo $status; ?></strong>
18                 </p>
19 <?php endif; ?>
20 <?php if ($form): ?>            
21                 <form method="post" action="<?php echo $CONF['ActionURL'] ?>">
22                 
23                 <div>
24                         <input type="hidden" name="tb_id" value="<?php echo $itemid;?>" />
25                         <input type="hidden" name="action" value="plugin" />
26                         <input type="hidden" name="name" value="TrackBack" />
27                         <input type="hidden" name="type" value="ping" />
28                         
29                         <table>
30                                 <tr>
31                                         <td>あなたの記事のurl</td>
32                                         <td><input type="text" value="" name="url" size="60" /></td>
33                                 </tr>
34                                 <tr>
35                                         <td>記事のタイトル</td>
36                                         <td><input type="text" value="" name="title" size="60" /></td>
37                                 </tr>
38                                 <tr>
39                                         <td>記事の要約文</td>
40                                         <td><textarea name="excerpt" cols="40" rows="5"></textarea></td>
41                                 </tr>
42                                 <tr>
43                                         <td>あなたのblogの名前</td>
44                                         <td><input type="text" value="" name="blog_name" size="60" /></td>
45                                 </tr>
46                                 <tr>
47                                         <td>トラックバック送信</td>
48                                         <td><input type="submit" value="トラックバックを送信する" /></td>
49                                 </tr>
50                         </table>
51                 </div>
52                 
53                 </form>
54 <?php endif; ?>
55         </body>
56 </html>