| 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 |
<div class="__tagembed__row"> |
| 6 |
<div class="__tagembed__col __tagembed__col_12 __tagembed__login_account"> |
| 7 |
<!--Error--> |
| 8 |
<div id="__tagembed__account_error" class="__tagembed__acount_error __tagembed__danger"> Unknown email. Check again or try your email address.<br></div> |
| 9 |
<!--Tabbing--> |
| 10 |
<div id="__tagembed__account_tab_view" class="__tagembed__tabarea"> |
| 11 |
<ul> |
| 12 |
<li><a id="__tagembed__account_login" onclick="__tagembed__manage_account_view('login')" href="javascript:void(0);" class="active">Login</a></li> |
| 13 |
<li><a id="__tagembed__account_register" onclick="__tagembed__manage_account_view('register')" href="javascript:void(0);">Register</a></li> |
| 14 |
</ul> |
| 15 |
</div> |
| 16 |
<!--Start-- Login View--> |
| 17 |
<div id="__tagembed__account_login_view" class="__tagembed__login_account_inn"> |
| 18 |
<div class="__tagembed__login_with"> |
| 19 |
<h2>Sign In</h2> |
| 20 |
</div> |
| 21 |
<p>Enter your email and password</p> |
| 22 |
<form action="javascript:void(0);" id="__tagembed__login_form"> |
| 23 |
<div class="__tagembed__form_row"> |
| 24 |
<input type="email" name="emailId" value="" placeholder="Email" required autofocus> |
| 25 |
<span id="__tagembed__login_email_id_error"></span> |
| 26 |
</div> |
| 27 |
<div class="__tagembed__form_row"> |
| 28 |
<input type="password" name="password" value="" placeholder="Password" required> |
| 29 |
<span id="__tagembed__login_password_error"></span> |
| 30 |
</div> |
| 31 |
<div class="__tagembed__submit_sec"> |
| 32 |
<a href="https://app.tagembed.com/accounts/forgotpassword/" target="_blank" >Forgot Password</a> |
| 33 |
<a href="javascript:void(0);" onclick="__tagembed__manage_account_view('forgotPassword')"></a> |
| 34 |
<button type="submit" class="__tagembed__btn">Sign In</button> |
| 35 |
</div> |
| 36 |
</form> |
| 37 |
</div> |
| 38 |
<!--End-- Login View--> |
| 39 |
<!--Start-- Register View--> |
| 40 |
<div id="__tagembed__account_register_view" class="__tagembed__register_inn"> |
| 41 |
<div class="__tagembed__login_with"> |
| 42 |
<h2>Sign Up</h2> |
| 43 |
</div> |
| 44 |
<p>Enter your details to create your account</p> |
| 45 |
<form action="javascript:void(0);" id="__tagembed__register_form"> |
| 46 |
<div class="__tagembed__form_row"> |
| 47 |
<input type="text" name="fullName" value="" placeholder="Full Name" required> |
| 48 |
<span id="__tagembed__register_full_name_error"></span> |
| 49 |
</div> |
| 50 |
<div class="__tagembed__form_row"> |
| 51 |
<input type="email" name="emailId" value="" placeholder="Email" required> |
| 52 |
<span id="__tagembed__register_email_id_error"></span> |
| 53 |
</div> |
| 54 |
<div class="__tagembed__form_row"> |
| 55 |
<input type="password" name="password" value="" placeholder="Password" required> |
| 56 |
<span id="__tagembed__register_password_error"></span> |
| 57 |
<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> |
| 58 |
</div> |
| 59 |
<div class="__tagembed__submit_sec __tagembed__flexend"> |
| 60 |
<button type="submit" class="__tagembed__btn">Create Account</button> |
| 61 |
</div> |
| 62 |
</form> |
| 63 |
</div> |
| 64 |
</div> |
| 65 |
</div> |
| 66 |
<?php include_once TAGEMBED_PLUGIN_DIR_PATH . "views/includes/footerView.php"; ?> |
| 67 |
|