| 1 | {include file="documentHeader"} |
|---|
| 2 | <head> |
|---|
| 3 | <title>{lang}wcf.dldb.search{/lang} - {PAGE_TITLE}</title> |
|---|
| 4 | {capture assign=specialStyles} |
|---|
| 5 | <link rel="stylesheet" type="text/css" media="screen" href="{@RELATIVE_WCF_DIR}style/downloadDB.css" /> |
|---|
| 6 | {/capture} |
|---|
| 7 | {include file='headInclude' sandbox=false} |
|---|
| 8 | </head> |
|---|
| 9 | <body> |
|---|
| 10 | {* --- quick search controls --- *} |
|---|
| 11 | {assign var='searchScript' value='index.php?form=DownloadDBSearch'} |
|---|
| 12 | {assign var='searchFieldTitle' value='{lang}wcf.dldb.search.query{/lang}'} |
|---|
| 13 | {assign var='searchShowExtendedLink' value=false} |
|---|
| 14 | {assign var='searchFieldOptions' value=false} |
|---|
| 15 | {* --- end --- *} |
|---|
| 16 | {include file='header' sandbox=false} |
|---|
| 17 | |
|---|
| 18 | <div id="main"> |
|---|
| 19 | |
|---|
| 20 | <ul class="breadCrumbs"> |
|---|
| 21 | <li><a href="index.php?page=DownloadDB{@SID_ARG_2ND}"><img src="{@RELATIVE_WCF_DIR}icon/downloadDBS.png" alt="" /> <span>{lang}wcf.dldb.title{/lang}</span></a> »</li> |
|---|
| 22 | </ul> |
|---|
| 23 | <div class="mainHeadline"> |
|---|
| 24 | <img src="{@RELATIVE_WCF_DIR}icon/downloadDBL.png" alt="" /> |
|---|
| 25 | <div class="headlineContainer"> |
|---|
| 26 | <h2>{lang}wcf.dldb.search{/lang}</h2> |
|---|
| 27 | </div> |
|---|
| 28 | </div> |
|---|
| 29 | |
|---|
| 30 | {if $userMessages|isset}{@$userMessages}{/if} |
|---|
| 31 | |
|---|
| 32 | {if $errorField} |
|---|
| 33 | <p class="error">{lang}wcf.global.form.error{/lang}</p> |
|---|
| 34 | {/if} |
|---|
| 35 | |
|---|
| 36 | {if $errorMessage|isset} |
|---|
| 37 | <p class="error">{@$errorMessage}</p> |
|---|
| 38 | {/if} |
|---|
| 39 | |
|---|
| 40 | <form method="post" action="index.php?form=DownloadDBSearch"> |
|---|
| 41 | <div class="border content"> |
|---|
| 42 | <div class="container-1"> |
|---|
| 43 | <fieldset> |
|---|
| 44 | <legend>{lang}wcf.dldb.search{/lang}</legend> |
|---|
| 45 | |
|---|
| 46 | <div class="formElement{if $errorField == 'query'} formError{/if}"> |
|---|
| 47 | <div class="formFieldLabel"> |
|---|
| 48 | <label for="searchTerm">{lang}wcf.dldb.search.query{/lang}</label> |
|---|
| 49 | </div> |
|---|
| 50 | <div class="formField"> |
|---|
| 51 | <input type="text" class="inputText" id="searchTerm" name="q" value="{$query}" maxlength="255" /> |
|---|
| 52 | {if $errorField == 'query'} |
|---|
| 53 | <p class="innerError"> |
|---|
| 54 | {if $errorType == 'empty'}{lang}wcf.global.error.empty{/lang}{/if} |
|---|
| 55 | </p> |
|---|
| 56 | {/if} |
|---|
| 57 | </div> |
|---|
| 58 | </div> |
|---|
| 59 | |
|---|
| 60 | {if $additionalFields|isset}{@$additionalFields}{/if} |
|---|
| 61 | </fieldset> |
|---|
| 62 | </div> |
|---|
| 63 | </div> |
|---|
| 64 | |
|---|
| 65 | <div class="formSubmit"> |
|---|
| 66 | <input type="submit" accesskey="s" value="{lang}wcf.global.button.submit{/lang}" /> |
|---|
| 67 | <input type="reset" accesskey="r" value="{lang}wcf.global.button.reset{/lang}" /> |
|---|
| 68 | {@SID_INPUT_TAG} |
|---|
| 69 | </div> |
|---|
| 70 | </form> |
|---|
| 71 | <p class="copyright dldbCopyHint">{lang}wcf.dldb.copyhint{/lang}</p> |
|---|
| 72 | </div> |
|---|
| 73 | {include file='footer' sandbox=false} |
|---|
| 74 | </body> |
|---|
| 75 | </html> |
|---|