| 1 |
<fieldset class="bbp-form"> |
| 2 |
<legend><?php _e( 'Upload Attachments', 'bbp-core' ); ?></legend> |
| 3 |
<div class="bbp-template-notice"> |
| 4 |
<p> |
| 5 |
<?php |
| 6 |
|
| 7 |
$size = $file_size < 1024 ? $file_size . ' KB' : floor( $file_size / 1024 ) . ' MB'; |
| 8 |
|
| 9 |
printf( __( 'Maximum file size allowed is %s.', 'bbp-core' ), $size ); |
| 10 |
|
| 11 |
?> |
| 12 |
</p> |
| 13 |
</div> |
| 14 |
<p class="bbp-attachments-form"> |
| 15 |
<label for="bbp_topic_tags"> |
| 16 |
<?php _e( 'Attachments', 'bbp-core' ); ?>: |
| 17 |
</label><br/> |
| 18 |
<input type="file" size="40" name="bbpc_attachment[]"><br/> |
| 19 |
<a class="d4p-attachment-addfile" href="#"><?php _e( 'Add another file', 'bbp-core' ); ?></a> |
| 20 |
</p> |
| 21 |
</fieldset> |
| 22 |
|