source: trunk/template/default/upload.vtp @ 25

Last change on this file since 25 was 25, checked in by z0rglub, 21 years ago

* empty log message *

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.3 KB
Line 
1<html>
2  <head>
3    {#style}
4    <title>{#upload_title}</title>
5  </head>
6  <body>
7    {#header}
8    <table style="width:100%;height:100%">
9      <tr align="center" valign="middle">
10        <td>
11          {#frame_start}1px{#frame_begin}
12            <div class="titrePage">{#upload_title}</div>
13          {#frame_end}
14          <div style="margin-bottom:5px;">&nbsp;</div>
15          {#frame_start}50%{#frame_begin}
16            <!--VTP_upload_not_successful-->
17            <form enctype="multipart/form-data" method="post" action="{#form_action}">
18              <table style="width:80%;margin-left:auto;margin-right:auto;">
19                <!--VTP_errors-->
20                <tr>
21                  <td colspan="3">
22                    <div class="errors">
23                      <ul>
24                        <!--VTP_li-->
25                        <li>{#li}</li>
26                        <!--/VTP_li-->
27                      </ul>
28                    </div>
29                  </td>
30                </tr>
31                <!--/VTP_errors-->
32                <tr>
33                  <td colspan="2" class="menu">
34                    <div style="text-align:center;">{#advise_title}</div>
35                    <ul>
36                      <!--VTP_advise-->
37                      <li>{#content}</li>
38                      <!--/VTP_advise-->
39                    </ul>
40                  </td>
41                </tr>
42                <tr>
43                  <td colspan="2" align="center" style="padding:10px;">
44                    <input name="picture" type="file" value="" />
45                  </td>
46                </tr>
47                <!--VTP_fields-->
48                <!-- username -->
49                <tr>
50                  <td class="menu">{#upload_username} <span style="color:red;">*</span></td>
51                  <td align="center" style="padding:10px;">
52                    <input name="username" type="text" value="{#username}" />
53                  </td>
54                </tr>
55                <!-- mail address -->
56                <tr>
57                  <td class="menu">{#mail_address} <span style="color:red;">*</span></td>
58                  <td align="center" style="padding:10px;">
59                    <input name="mail_address" type="text" value="{#user_mail_address}" />
60                  </td>
61                </tr>
62                <!-- name of the picture -->
63                <tr>
64                  <td class="menu">{#upload_name}</td>
65                  <td align="center" style="padding:10px;">
66                    <input name="name" type="text" value="{#name}" />
67                  </td>
68                </tr>
69                <!-- author -->
70                <tr>
71                  <td class="menu">{#upload_author}</td>
72                  <td align="center" style="padding:10px;">
73                    <input name="author" type="text" value="{#author}" />
74                  </td>
75                </tr>
76                <!-- date of creation -->
77                <tr>
78                  <td class="menu">{#upload_creation_date}</td>
79                  <td align="center" style="padding:10px;">
80                    <input name="date_creation" type="text" value="{#date_creation}" />
81                  </td>
82                </tr>
83                <!-- comment -->
84                <tr>
85                  <td class="menu">{#upload_comment}</td>
86                  <td align="center" style="padding:10px;">
87                   <textarea name="comment" rows="3" cols="40" style="overflow:auto">{#comment}</textarea>
88                  </td>
89                </tr>
90                <!--/VTP_fields-->
91                <tr>
92                  <td colspan="2" align="center">
93                    <input name="submit" type="submit" value="{#submit}" />
94                  </td>
95                </tr>
96              </table>
97            </form>
98            <!--/VTP_upload_not_successful-->
99            <!--VTP_upload_successful-->
100            {#upload_successful}<br />
101            <!--/VTP_upload_successful-->
102            <div style="text-align:center;">
103              <a href="{#return_url}">[ {#search_return_main_page} ]</a>
104            </div>
105            <!--VTP_note-->
106            <div style="text-align:left;"><span style="color:red;">*</span> : {#mandatory}</div>
107            <!--/VTP_note-->
108          {#frame_end}
109        </td>
110      </tr>
111    </table>
112    {#footer}
113  </body>
114</html>
Note: See TracBrowser for help on using the repository browser.