File: /home/enamadmin/www/wp-content/plugins/miniorange-2-factor-authentication/views/request-demo.php
<?php
/**
* Display Request demo form.
*
* @package miniorange-2-factor-authentication/views
*/
// I don't think we give any form for demo request in the plugin. Can remove this file.
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
?>
<div class="mo_wpns_divided_layout">
<div class="mo_wpns_setting_layout">
<h3> Demo Request Form : <div style="float: right;">
<?php
echo '<a class="mo_wpns_button mo_wpns_button1" href="' . esc_url( $two_fa ) . '">Back</a>';
?>
</div></h3>
<form method="post">
<input type="hidden" name="option" value="mo_2FA_demo_request_form" />
<input type="hidden" name="nonce" value="<?php echo esc_html( wp_create_nonce( 'mo2f-Request-demo' ) ); ?>">
<table cellpadding="4" cellspacing="4">
<tr>
<td><strong>Usecase : </strong></td>
<td>
<textarea type="text" minlength="15" name="mo_2FA_demo_usecase" style="resize: vertical; width:350px; height:100px;" rows="4" placeholder="Write us about your usecase" required value=""></textarea>
</td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td><strong>Email ID : </strong></td>
<td><input required type="email" name="mo_2FA_demo_email" placeholder="Email id" value="" /></td>
</tr>
<tr>
<td><strong>Request a demo for : </strong></td>
<td>
<select required name="mo_2FA_demo_plan" id="mo_2FA_demo_plan_id">
<option disabled selected>------------------ Select ------------------</option>
<option value="2FA">Two Factor Authentication</option>
<option value="WAF">Web Application Firewall (WAF) </option>
<option value="malwareScanner">Malware Scanner</option>
<option value="login_spam">Login Security</option>
<option value="backup">Encrypted Backup </option>
<option value="notSure">Not Sure/Multiple options</option>
</select>
</td>
</tr>
</table>
<div style="padding-top: 10px;">
<input type="submit" name="submit" value="Submit Demo Request" class="mo_wpns_button mo_wpns_button1" />
</div>
</form>
</div>
</div>