20 lines
902 B
Smarty
20 lines
902 B
Smarty
{**
|
|
* templates/form/radioButton.tpl
|
|
*
|
|
* Copyright (c) 2014-2021 Simon Fraser University
|
|
* Copyright (c) 2000-2021 John Willinsky
|
|
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
|
|
*
|
|
* form radio button
|
|
*}
|
|
|
|
<div class="pkp_form_file_input_container">
|
|
<input type="file" id="{$FBV_id}" name="{$FBV_name}" class="pkp_form_upload_field"{if $FBV_disabled} disabled="disabled"{/if} />
|
|
<div class="pkp_form_fakeFile">
|
|
<input class="pkp_form_fakeInput" {if $FBV_disabled} disabled="disabled"{/if} />
|
|
<input type="button" value="{translate key='navigation.browse'}..." class="button pkp_form_fakeButton"{if $FBV_disabled} disabled="disabled"{/if}/>
|
|
</div>
|
|
</div>
|
|
{if $FBV_submit}<input type="submit" name="{$FBV_submit}" value="{translate key="common.upload"}" class="button pkp_form_uploadFile"{if $FBV_disabled} disabled="disabled"{/if} />{/if}
|
|
{$FBV_label_content}
|