tab2.php 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <form id="auth_form" method="POST">
  2. <header>
  3. <h2><?php echo $tab_name_2;?></h2>
  4. <div class="center"><?php echo $tab_description_2; ?></div>
  5. </header>
  6. <div>
  7. <label class="desc" id="fsync_auth_apikey_label" for="fsync_auth_apikey"><?php echo $auth_apikey;?></label>
  8. <div>
  9. <input id="fsync_auth_apikey" name="fsync_auth_apikey" type="text" class="field text fn" value="<?php echo $auth['fsync_auth_apikey'];?>">
  10. <div id="fsync_auth_apikey_error" class="red hide"><small><?php echo $auth_apikey_error;?></small></div>
  11. </div>
  12. </div>
  13. <div>
  14. <label class="desc" id="fsync_auth_fiscalcode_label" for="fsync_auth_fiscalcode"><?php echo $auth_fiscalcode;?></label>
  15. <div>
  16. <input id="fsync_auth_fiscalcode" name="fsync_auth_fiscalcode" type="text" class="field text fn" value="<?php echo $auth['fsync_auth_fiscalcode'];?>">
  17. <div id="fsync_auth_fiscalcode_error" class="red hide"><small><?php echo $auth_fiscalcode_error;?></small></div>
  18. </div>
  19. </div>
  20. <div>
  21. <label class="desc" id="fsync_auth_username_label" for="fsync_auth_username"><?php echo $auth_username;?></label>
  22. <div>
  23. <input id="fsync_auth_username" name="fsync_auth_username" type="text" class="field text fn" value="<?php echo $auth['fsync_auth_username'];?>" >
  24. <div id="fsync_auth_username_error" class="red hide"><small><?php echo $auth_username_error;?></small></div>
  25. </div>
  26. </div>
  27. <div>
  28. <label class="desc" id="fsync_auth_password_label" for="fsync_auth_password"><?php echo $auth_password;?></label>
  29. <div>
  30. <input id="fsync_auth_password" name="fsync_auth_password" type="password" class="field text fn" value="<?php echo $auth['fsync_auth_password'];?>">
  31. <div id="fsync_auth_password_error" class="red hide"><small><?php echo $auth_password_error;?></small></div>
  32. </div>
  33. </div>
  34. <div class="center red hide" id="authform_error">
  35. <small><?php echo $authform_error;?></small>
  36. </div>
  37. <div class="center">
  38. <input type="hidden" name="action" value="save" />
  39. </div>
  40. <div class="center">
  41. <a id="save-auth-btn" href="javascript: void(0)" onclick="submitAuthForm();" class="btn btn-green"><?php echo $save_btn;?></a>
  42. <img src="View/img/loader.gif" style="position: relative;left: 10px;top: 3px;display:none;" id="save-loader"/>
  43. </div>
  44. </form>