1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <form id="auth_form" method="POST">
- <header>
- <h2><?php echo $tab_name_2;?></h2>
- <div class="center"><?php echo $tab_description_2; ?></div>
- </header>
-
- <div>
- <label class="desc" id="fsync_auth_apikey_label" for="fsync_auth_apikey"><?php echo $auth_apikey;?></label>
- <div>
- <input id="fsync_auth_apikey" name="fsync_auth_apikey" type="text" class="field text fn" value="<?php echo $auth['fsync_auth_apikey'];?>">
- <div id="fsync_auth_apikey_error" class="red hide"><small><?php echo $auth_apikey_error;?></small></div>
- </div>
- </div>
- <div>
- <label class="desc" id="fsync_auth_fiscalcode_label" for="fsync_auth_fiscalcode"><?php echo $auth_fiscalcode;?></label>
- <div>
- <input id="fsync_auth_fiscalcode" name="fsync_auth_fiscalcode" type="text" class="field text fn" value="<?php echo $auth['fsync_auth_fiscalcode'];?>">
- <div id="fsync_auth_fiscalcode_error" class="red hide"><small><?php echo $auth_fiscalcode_error;?></small></div>
- </div>
- </div>
- <div>
- <label class="desc" id="fsync_auth_username_label" for="fsync_auth_username"><?php echo $auth_username;?></label>
- <div>
- <input id="fsync_auth_username" name="fsync_auth_username" type="text" class="field text fn" value="<?php echo $auth['fsync_auth_username'];?>" >
- <div id="fsync_auth_username_error" class="red hide"><small><?php echo $auth_username_error;?></small></div>
- </div>
- </div>
- <div>
- <label class="desc" id="fsync_auth_password_label" for="fsync_auth_password"><?php echo $auth_password;?></label>
- <div>
- <input id="fsync_auth_password" name="fsync_auth_password" type="password" class="field text fn" value="<?php echo $auth['fsync_auth_password'];?>">
- <div id="fsync_auth_password_error" class="red hide"><small><?php echo $auth_password_error;?></small></div>
- </div>
- </div>
- <div class="center red hide" id="authform_error">
- <small><?php echo $authform_error;?></small>
- </div>
- <div class="center">
- <input type="hidden" name="action" value="save" />
- </div>
- <div class="center">
- <a id="save-auth-btn" href="javascript: void(0)" onclick="submitAuthForm();" class="btn btn-green"><?php echo $save_btn;?></a>
- <img src="View/img/loader.gif" style="position: relative;left: 10px;top: 3px;display:none;" id="save-loader"/>
- </div>
-
- </form>
|