123456789101112131415161718192021222324252627 |
- <form id="sync_form" method="POST">
- <header>
- <h2><?php echo $tab_name_1;?></h2>
- <div class="center"><?php echo $tab_description_1; ?></div>
- </header>
-
- <div>
- <label class="desc" id="sync_choice_label" for="sync_choice">
- <?php //echo $select_text;?>
- </label>
- <div>
- <select id="fsync_datatype" name="fsync_datatype" class="field select medium">
- <?php foreach($dataTypes as $dataType): ?>
- <option value='<?php echo $dataType['id']; ?>'><?php echo $dataType['label']; ?></option>
- <?php endforeach; ?>
- </select>
- <div id="fsync-datatype-error" class="red hide"><small><?php echo $datatype_error;?></small></div>
- <div id="fsync-authform-error" class="red hide"><small><?php echo $authform_error;?></small></div>
- </div>
- </div>
-
- <div class="center">
- <a id="btn_sync_form" href="javascript: void(0)" onclick="submitSyncForm();" class="btn btn-blue"><?php echo $sync_btn;?></a>
- </div>
-
- </form>
|