1 | {literal} |
---|
2 | <style> |
---|
3 | form fieldset p {text-align:left;margin:0 0 1.5em 0;line-height:20px;} |
---|
4 | form fieldset input[type="text"] {width:400px} |
---|
5 | form fieldset textarea {width:600px;height:100px} |
---|
6 | .fieldCaption {font-style:italic;font-size:90% } |
---|
7 | .permissionActions {text-align:center;height:20px} |
---|
8 | .permissionActions a:hover {border:none} |
---|
9 | .permissionActions img {margin-bottom:-2px} |
---|
10 | </style> |
---|
11 | {/literal} |
---|
12 | |
---|
13 | |
---|
14 | <div class="titrePage"> |
---|
15 | <h2>Showcase Register</h2> |
---|
16 | </div> |
---|
17 | |
---|
18 | {if $CURRENT_STATUS eq 'unknown'} |
---|
19 | <form method="post" name="subscribeToShowcase" action="{$F_ACTION}" class="properties"> |
---|
20 | <fieldset> |
---|
21 | <legend>{'Subscribe my gallery to Piwigo Showcase'|@translate}</legend> |
---|
22 | |
---|
23 | <p style="margin-top:10px"> |
---|
24 | <strong>{'Gallery Address (URL)'|@translate}</strong> |
---|
25 | <br> |
---|
26 | {$URL} |
---|
27 | </p> |
---|
28 | |
---|
29 | <p> |
---|
30 | <strong>{'Creation date'|@translate}</strong> |
---|
31 | <br> |
---|
32 | {$DATE_CREATION} |
---|
33 | </p> |
---|
34 | |
---|
35 | <p> |
---|
36 | <strong>{'Email address'|@translate}</strong> <span class="fieldCaption">{'(optional)'|@translate}</span> |
---|
37 | <br> |
---|
38 | <input type="text" name="email" value="{$EMAIL}"> |
---|
39 | <br><span class="fieldCaption">{'provide it if you want to be notified when your gallery is registered'|@translate}</span> |
---|
40 | </p> |
---|
41 | |
---|
42 | <p> |
---|
43 | <strong>{'Gallery title'|@translate}</strong> <span class="fieldCaption">{'(optional)'|@translate}</span> |
---|
44 | <br> |
---|
45 | <input type="text" name="title" value="{$TITLE}"> |
---|
46 | </p> |
---|
47 | |
---|
48 | <p> |
---|
49 | <strong>{'Author'|@translate}</strong> <span class="fieldCaption">{'(optional)'|@translate}</span> |
---|
50 | <br> |
---|
51 | <input type="text" name="author" value="{$AUTHOR}"> |
---|
52 | </p> |
---|
53 | |
---|
54 | <p> |
---|
55 | <strong>{'Tags'|@translate}</strong> <span class="fieldCaption">{'(optional)'|@translate}</span> |
---|
56 | <br> |
---|
57 | <input type="text" name="tags" value="{$TAGS}"> |
---|
58 | <br><span class="fieldCaption">{'(example: nature, landscape, portrait)'|@translate}</span> |
---|
59 | </p> |
---|
60 | |
---|
61 | <p> |
---|
62 | <strong>{'Description'|@translate}</strong> <span class="fieldCaption">{'(optional)'|@translate}</span> |
---|
63 | <br> |
---|
64 | <textarea name="description">{$DESCRIPTION}</textarea> |
---|
65 | <br><span class="fieldCaption">{'A good description will improve your visibility in search engines'|@translate}</span> |
---|
66 | </p> |
---|
67 | |
---|
68 | <p style="margin:0;"> |
---|
69 | <input class="submit" type="submit" name="submit_subscribe" value="{'Register'|@translate}"/> |
---|
70 | </p> |
---|
71 | </fieldset> |
---|
72 | </form> |
---|
73 | {/if} |
---|