File: /home/dmstechonline/social.dmstech.online/view/Members/add.php
<?php
/* Check the absolute path to the Social Auto Poster directory. */
if ( !defined( 'SAP_APP_PATH' ) ) {
// If SAP_APP_PATH constant is not defined, perform some action, show an error, or exit the script
// Or exit the script if required
exit();
}
global $sap_common;
$SAP_Mingle_Update = new SAP_Mingle_Update();
$license_data = $SAP_Mingle_Update->get_license_data();
if( !$sap_common->sap_is_license_activated() ){
$redirection_url = '/mingle-update/';
header('Location: ' . SAP_SITE_URL . $redirection_url );
die();
}
include SAP_APP_PATH . 'header.php';
include SAP_APP_PATH . 'sidebar.php';
?>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<section class="content-header d-flex justify-content-between">
<h1><div class="plus-icon"></div><p><?php echo $sap_common->lang('add_customer'); ?><small></small></p></h1>
<a href="<?php echo SAP_SITE_URL . '/members/'; ?>"><button class="btn btn-primary back-btn">
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="23" viewBox="0 0 13 23" fill="none">
<path d="M11 20.6863L1.65685 11.3431L11 2" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
Back
</button></a>
</section>
<section class="content">
<?php
echo $this->flash->renderFlash(); ?>
<form class="add-member-form" name="new-member" id="add-member" method="POST" enctype="multipart/form-data" action="<?php echo SAP_SITE_URL . '/member/save/'; ?>">
<div class="box box-primary">
<div class="box-header with-border ">
<div class="row d-flex align-items-center">
<div class="col-md-6 form-group">
<h3 class="box-title"><?php echo $sap_common->lang('customer_details'); ?></h3>
</div>
<div class="col-md-6 form-group">
<div style="display: inline-block;float: right;">
<div class="d-flex align-items-center justify-content-end status-text">
<label class="control-label"><?php echo $sap_common->lang('status'); ?></label>
<div>
<input type="checkbox" class="tgl tgl-ios" name="sap_status" id="sap_status" value="1" />
<label class="tgl-btn float-right-cs-init" for="sap_status"></label>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="box-body">
<div class="row d-flex margin-bottom-30">
<div class="col-md-6 form-group">
<label><?php echo $sap_common->lang('first_name'); ?><span class="astric">*</span></label>
<div>
<input type="text" class="form-control" name="sap_firstname" id="sap_firstname" value="<?php echo ( !empty($_POST['sap_firstname']) ? $_POST['sap_firstname'] : '' ); ?>" placeholder="<?php echo $sap_common->lang('ph_first_name'); ?>" />
</div>
</div>
<div class="col-md-6 form-group">
<label><?php echo $sap_common->lang('last_name'); ?></label>
<div>
<input type="text" class="form-control" name="sap_lastname" id="sap_lastname" value="<?php echo ( !empty($_POST['sap_lastname']) ? $_POST['sap_lastname'] : '' ); ?>" placeholder="<?php echo $sap_common->lang('ph_last_name'); ?>" />
</div>
</div>
<div class="col-md-6 form-group">
<label><?php echo $sap_common->lang('email'); ?><span class="astric">*</span></label>
<div>
<input type="text" class="form-control" name="sap_email" id="sap_email" value="<?php echo ( !empty($_POST['sap_email']) ? $_POST['sap_email'] : '' ); ?>" placeholder="<?php echo $sap_common->lang('ph_email'); ?>" />
</div>
</div>
<div class="col-md-6 form-group">
<label><?php echo $sap_common->lang('role'); ?></label>
<div>
<?php
$role = isset( $_POST['sap_role'] ) ? $_POST['sap_role'] : ''; ?>
<select name="sap_role" class="form-control sap_role">
<option value="user" <?php if( 'user' == $role ) echo 'selected="selected"'; ?>><?php echo $sap_common->lang('user'); ?></option>
<option value="superadmin" <?php if( 'superadmin' == $role ) echo 'selected="selected"'; ?>><?php echo $sap_common->lang('admin'); ?></option>
</select>
</div>
</div>
<div class="col-md-6 form-group">
<label><?php echo $sap_common->lang('password'); ?><span class="astric">*</span></label>
<div>
<input type="password" class="form-control" name="sap_password" id="sap_password" value="" placeholder="<?php echo $sap_common->lang('ph_password'); ?>" />
</div>
</div>
<div class="col-md-6 form-group">
<label><?php echo $sap_common->lang('re_password'); ?><span class="astric">*</span></label>
<div>
<input type="password" class="form-control" name="sap_repassword" id="sap_repassword" value="" placeholder="<?php echo $sap_common->lang('ph_password'); ?>" />
</div>
</div>
</div>
<div class="row sap_plan">
<div class="form-group">
<div class="form-group d-flex">
<label class="col-md-1 control-label"><?php echo $sap_common->lang('notify_user'); ?></label>
<div>
<label class="auth-option">
<input type="checkbox" name="sap_notify" id="sap_notify" value="yes" class="tgl tgl-ios" />
<label class="tgl-btn float-right-cs-init" style="float:left;" for="sap_notify"></label>
<span style="float: right; padding: 3px 0 0 9px;"><?php echo $sap_common->lang('notify_user_checkbox'); ?></span>
</label>
</div>
</div>
</div>
</div>
<div class="sap-mt-1 col-md-12 form-group row">
<input type="hidden" name="form-submitted" value="1">
<button type="submit" name="sap_add_member_submit" class="btn btn-primary"><?php echo $sap_common->lang('add_customer'); ?></button>
</div>
</div>
</div>
</form>
</section>
</div>
<script src="<?php echo SAP_SITE_URL . '/assets/js/jquery.min.js' ?>" type="text/javascript"></script>
<script src="<?php echo SAP_SITE_URL . '/assets/js/custom.js'; ?>"></script>
<?php
include'footer.php';
?>