0byt3m1n1
Path:
/
var
/
www
/
listcrawler.app
/
public_html
/
admin
/
forms
/
[
Home
]
File: message_api_form.php
<fieldset> <?php $sep_arg = "?"; if (strpos($message_api["base_url"], '?') !== false) { $sep_arg = "&"; } ?> <div class="form-group"> <label for="api_url_title">Message API URL</label> <div class="text-primary"><strong><span style="color:#f5115d;"><?php echo $message_api['base_url'];?></span><?php echo $sep_arg;?><span style="color:#f5a442;"><?php echo $message_api['var_mobile_title'];?></span>=<span style="color:#11e2f5;">MOBILE_NUMBER</span>&<span style="color:#71e65a;"><?php echo $message_api['var_username_title'];?></span>=<span style="color:#f511cb;"><?php echo $message_api['var_username_value'];?></span>&<span style="color:#0ba38a;"><?php echo $message_api['var_password_title'];?></span>=<span style="color:#e611f5;"><?php echo $message_api['var_password_value'];?></span>&<span style="color:#f5d711;"><?php echo $message_api['var_city_title'];?></span>=<span style="color:#11e2f5;">CITY_NAME</span></strong> </div> </div> <div class="form-group"> <label for="base_url">API <span style="color:#f5115d;">Base URL</span> *</label> <input type="text" name="base_url" value="<?php echo htmlspecialchars($edit ? $message_api['base_url'] : '', ENT_QUOTES, 'UTF-8'); ?>" placeholder="Base URL" class="form-control" required="required" id="base_url"> </div> <div class="form-group"> <label for="var_mobile_title">API Parameter title for <span style="color:#f5a442;">Mobile Number</span> *</label> <input type="text" name="var_mobile_title" value="<?php echo htmlspecialchars($edit ? $message_api['var_mobile_title'] : '', ENT_QUOTES, 'UTF-8'); ?>" placeholder="API Parameter title for Mobile Number" class="form-control" required="required" id="var_mobile_title"> </div> <div class="form-group"> <label for="var_username_title">API Parameter title for <span style="color:#71e65a;">User Name</span> *</label> <input type="text" name="var_username_title" value="<?php echo htmlspecialchars($edit ? $message_api['var_username_title'] : '', ENT_QUOTES, 'UTF-8'); ?>" placeholder="API Parameter title for User Name" class="form-control" required="required" id="var_username_title"> </div> <div class="form-group"> <label for="var_username_value">API Parameter value for <span style="color:#f511cb;"><?php echo $message_api['var_username_title'];?></span> *</label> <input type="text" name="var_username_value" value="<?php echo htmlspecialchars($edit ? $message_api['var_username_value'] : '', ENT_QUOTES, 'UTF-8'); ?>" placeholder="API Parameter value for <?php echo $message_api['var_username_title'];?>" class="form-control" required="required" id="var_username_value"> </div> <div class="form-group"> <label for="var_password_title">API Parameter title for <span style="color:#0ba38a;">Password</span> *</label> <input type="text" name="var_password_title" value="<?php echo htmlspecialchars($edit ? $message_api['var_password_title'] : '', ENT_QUOTES, 'UTF-8'); ?>" placeholder="API Parameter title for User Name" class="form-control" required="required" id="var_password_title"> </div> <div class="form-group"> <label for="var_password_value">API Parameter value for <span style="color:#e611f5;"><?php echo $message_api['var_password_title'];?></span> *</label> <input type="text" name="var_password_value" value="<?php echo htmlspecialchars($edit ? $message_api['var_password_value'] : '', ENT_QUOTES, 'UTF-8'); ?>" placeholder="API Parameter value for <?php echo $message_api['var_password_title'];?>" class="form-control" required="required" id="var_password_value"> </div> <div class="form-group"> <label for="var_city_title">API Parameter title for <span style="color:#f5d711;">City Name</span> *</label> <input type="text" name="var_city_title" value="<?php echo htmlspecialchars($edit ? $message_api['var_city_title'] : '', ENT_QUOTES, 'UTF-8'); ?>" placeholder="API Parameter title for City Name" class="form-control" required="required" id="var_city_title"> </div> <div class="form-group text-center"> <label></label> <button type="submit" class="btn btn-warning" >Save <i class="glyphicon glyphicon-send"></i></button> </div> </fieldset>