| 1 |
<?php |
| 2 |
include_once TAGEMBED_PLUGIN_DIR_PATH . 'views/includes/headView.php'; |
| 3 |
wp_enqueue_script('__script-account-js', TAGEMBED_PLUGIN_URL . '/assets/js/account/tagembed.account.script.js', ['jquery'], TAGEMBED_PLUGIN_VERSION, true); |
| 4 |
?> |
| 5 |
<!--Start-- Other Plugin Popup--> |
| 6 |
<style> |
| 7 |
.__tagembed__okaybtn:hover { |
| 8 |
color: #fff !important; |
| 9 |
} |
| 10 |
</style> |
| 11 |
<div id="__tagembed__other_plugin_popup" class="__tagembed__other_plugin_popup"></div> |
| 12 |
<!--End-- Other Plugin Popup--> |
| 13 |
|
| 14 |
<div class="__tagembed__row"> |
| 15 |
<div class="__tagembed__col __tagembed__col_12 __tagembed__login_account"> |
| 16 |
<!--Error--> |
| 17 |
<div id="__tagembed__account_error" class="__tagembed__acount_error __tagembed__danger"> Unknown email. Check again or try your email address.<br></div> |
| 18 |
<!--Tabbing--> |
| 19 |
<div id="__tagembed__account_tab_view" class="__tagembed__tabarea"> |
| 20 |
<ul> |
| 21 |
<li><a id="__tagembed__account_login" onclick="__tagembed__manage_account_view('login')" href="javascript:void(0);" class="active">Login</a></li> |
| 22 |
<li><a id="__tagembed__account_register" onclick="__tagembed__manage_account_view('register')" href="javascript:void(0);">Register</a></li> |
| 23 |
</ul> |
| 24 |
</div> |
| 25 |
<!--Start-- Login View--> |
| 26 |
<div id="__tagembed__account_login_view" class="__tagembed__login_account_inn"> |
| 27 |
<div class="__tagembed__login_with"> |
| 28 |
<h2>Sign In</h2> |
| 29 |
</div> |
| 30 |
<p>Enter your email and password</p> |
| 31 |
<form action="javascript:void(0);" id="__tagembed__login_form"> |
| 32 |
<div class="__tagembed__form_row"> |
| 33 |
<input type="email" name="emailId" value="" placeholder="Email" required autofocus> |
| 34 |
<span id="__tagembed__login_email_id_error"></span> |
| 35 |
</div> |
| 36 |
<div class="__tagembed__form_row"> |
| 37 |
<input type="password" name="password" value="" placeholder="Password" required> |
| 38 |
<span id="__tagembed__login_password_error"></span> |
| 39 |
</div> |
| 40 |
<div class="__tagembed__submit_sec"> |
| 41 |
<a href="https://app.tagembed.com/accounts/forgotpassword/" target="_blank">Forgot Password</a> |
| 42 |
<a href="javascript:void(0);" onclick="__tagembed__manage_account_view('forgotPassword')"></a> |
| 43 |
<button type="submit" class="__tagembed__btn">Sign In</button> |
| 44 |
</div> |
| 45 |
</form> |
| 46 |
</div> |
| 47 |
<!--End-- Login View--> |
| 48 |
<!--Start-- Register View--> |
| 49 |
<div id="__tagembed__account_register_view" class="__tagembed__register_inn"> |
| 50 |
<div class="__tagembed__login_with"> |
| 51 |
<h2>Sign Up</h2> |
| 52 |
</div> |
| 53 |
<p>Enter your details to create your account</p> |
| 54 |
<form action="javascript:void(0);" id="__tagembed__register_form"> |
| 55 |
<div class="__tagembed__form_row"> |
| 56 |
<input type="text" name="fullName" value="" placeholder="Full Name" required> |
| 57 |
<span id="__tagembed__register_full_name_error"></span> |
| 58 |
</div> |
| 59 |
<div class="__tagembed__form_row"> |
| 60 |
<input type="email" name="emailId" value="" placeholder="Email" required> |
| 61 |
<span id="__tagembed__register_email_id_error"></span> |
| 62 |
</div> |
| 63 |
<div class="__tagembed__form_row"> |
| 64 |
<select id="__tagembed__callingCode" name="calling_code" style="padding: 0 8px;line-height: 2; min-height: 30px;width: 100%;border-radius: 0; border: 1px solid #999;background-color: #fff;color: #2c3338;"></select> |
| 65 |
<span id="__tagembed__register_calling_code_error"></span> |
| 66 |
</div> |
| 67 |
<div class="__tagembed__form_row"> |
| 68 |
<input type="number" name="contact_no" value="" placeholder="Contact Number"> |
| 69 |
<span id="__tagembed__register_contact_no_error"></span> |
| 70 |
</div> |
| 71 |
<div class="__tagembed__form_row"> |
| 72 |
<input type="password" name="password" value="" placeholder="Password" required> |
| 73 |
<span id="__tagembed__register_password_error"></span> |
| 74 |
<p style="font-size: 12px;color: #b5b5c3;font-weight: 400;max-width: 300px;margin-top: 10px;line-height: normal;">By clicking Create Account, you agree to our <a href="https://tagembed.com/terms-of-service/" target="_blank" style="cursor: pointer;">Terms of Service</a> and <a href="https://tagembed.com/privacy-policy/" target="_blank" style="cursor: pointer;">Privacy Policy</a></p> |
| 75 |
</div> |
| 76 |
<div class="__tagembed__submit_sec __tagembed__flexend"> |
| 77 |
<button type="submit" class="__tagembed__btn">Create Account</button> |
| 78 |
</div> |
| 79 |
</form> |
| 80 |
</div> |
| 81 |
</div> |
| 82 |
</div> |
| 83 |
<?php include_once TAGEMBED_PLUGIN_DIR_PATH . 'views/includes/footerView.php'; ?> |