techbank.live
Open in
urlscan Pro
2606:4700:3033::ac43:dcf5
Public Scan
Submitted URL: https://api.techbank.live/
Effective URL: https://techbank.live//
Submission: On August 26 via automatic, source certstream-suspicious — Scanned from DE
Effective URL: https://techbank.live//
Submission: On August 26 via automatic, source certstream-suspicious — Scanned from DE
Form analysis
5 forms found in the DOM<form class="contct-tch-form">
<div class="form-area required"><input type="text" name="" placeholder="Full Name"></div>
<div class="form-area required"><input type="mail" name="" placeholder="Email ID"> <!----></div>
<div class="form-area required"><textarea placeholder="Message"></textarea></div> <button type="submit" class="tchbutton">Send</button>
</form>
POST /
<form method="POST" action="/" accept-charset="UTF-8" id="businessplan-form" role="form"><input type="hidden" name="_token" value="IT0MubefG7lqaeVXbIKdpJT6xfB1uns9wJj55OcX">
<div class="form-group"><label for="name">Your Name</label> <input type="text" name="name" placeholder="Enter Your Name" required="required" class="form-control"></div>
<div class="form-group"><label for="email">Email</label> <input type="email" name="email" placeholder="Email" required="required" class="form-control"></div>
<div class="form-group"><label for="website">Website:</label> <input type="text" name="website" placeholder="Website" required="required" class="form-control"></div>
<div class="form-group"><label for="projectdesc">Project Description</label> <textarea rows="2" cols="80" type="text" name="projectdesc" placeholder="Project Description" required="required" class="form-control"></textarea></div>
<div class="form-group"><label for="phone">Phone Number</label> <input type="text" name="phone" placeholder="Phone Number" required="required" class="form-control"></div>
<div style="text-align: center;"><button type="submit" id="businessplan-btn" class="btn btn-success techbankBlueBtn"> Submit Business Plan </button></div>
</form>
POST /v1/getin
<form id="loginForm" method="POST" action="/v1/getin" accept-charset="UTF-8" role="form">
<div class="form-elements">
<div class="form_gp"><label for="email">Email address</label> <input type="text" name="email" placeholder="Enter e-mail" required="required" class="inputLoginPopup"></div>
<div class="form_gp"><label for="pwd">Password</label> <input type="password" name="password" placeholder="Password" required="required" class="inputLoginPopup"></div>
<a href="https://techbank.live/reset-password" class="forgot_psw"> Forgot password?</a>
</div> <!---->
<div class="login-action"><button type="submit" name="login" class="signInBtn">Sign In</button> <!----></div>
</form>
POST /signup/free
<form id="signupForm" method="POST" action="/signup/free" accept-charset="UTF-8" role="form">
<div class="form-group" align="left" v-bind:class="{ 'has-error': signup.errors.email && signup.errors.email.length }">
<label for="email" class="lblLoginPopup">Email:</label>
<input class="form-control inputbox inputLoginPopup" type="email" name="email" v-model="signup.email" placeholder="Enter e-mail / member id" required="">
<span class="help-block bg-danger" v-if="signup.errors.email && signup.errors.email.length">
<ul class="list-unstyled">
<li v-for="error in signup.errors.email" class="text-danger">
{{error}}
</li>
</ul>
</span>
</div>
<div class="form-group" align="left" v-bind:class="{ 'has-error': signup.errors.password && signup.errors.password.length }">
<label for="pwd" class="lblLoginPopup">Password:</label>
<input class="form-control inputbox inputLoginPopup" type="password" name="password" v-model="signup.password" placeholder="Password" required="" style="width:100%;">
<span class="help-block bg-danger" v-if="signup.errors.password && signup.errors.password.length">
<ul>
<li v-for="error in signup.errors.password" class="text-danger">
{{error}}
</li>
</ul>>
</span>
</div>
<div class="form-group" v-bind:class="{ 'has-error': signup.errors.g_recaptcha_response && signup.errors.g_recaptcha_response.length }">
<div class="col-sm-12 mb-20 captchaDiv" align="center">
<vue-recaptcha ref="signupRecaptcha" @verify="onVerify" :sitekey="sitekey">
</vue-recaptcha>
<span class="help-block bg-danger" v-if="signup.errors.g_recaptcha_response && signup.errors.g_recaptcha_response.length">
<ul class="list-unstyled">
<li v-for="error in signup.errors.g_recaptcha_response" class="text-danger">
{{error}}
</li>
</ul>
</span>
</div>
</div>
<button type="submit" name="login" class="btn signUpBtn createbtn" v-if="!signup.processing">Create account</button>
<button type="submit" name="login" class="btn signUpBtn createbtn" v-if="signup.processing" disabled="">Signing Up...<i class="fa fa-spinner fa-spin"></i></button>
<div class="form-group">
<label class="checkbox-inline">
<input type="checkbox" name="marketing_email" v-model="signup.marketing_email"> Send me saving tips and offer emails. </label>
</div>
<div class="form-group">
<p class="terms"> By clicking submit you agree to our <a class="pointer" href="/terms-and-conditions" title="Terms and Conditions">Terms</a> & <a class="pointer" href="/privacy-policy">Privacy Policy</a>. </p>
</div>
<div class="alert alert-danger" v-if="signup.errorMessage">
<span v-html="signup.errorMessage"></span>
</div>
</form>
POST /
<form method="POST" action="/" accept-charset="UTF-8" id="businessplan-form" role="form" @submit.prevent="submitPlan">
<input type="hidden" name="_token" value="IT0MubefG7lqaeVXbIKdpJT6xfB1uns9wJj55OcX">
<div class="form-group" v-bind:class="{ 'has-error': plan.errors.name && plan.errors.name.length }">
<label for="name">Your Name</label>
<input class="form-control" type="text" name="name" v-model="plan.name" placeholder="Enter Your Name" required="">
<span class="help-block bg-danger" v-if="plan.errors.name && plan.errors.name.length">
<ul class="list-unstyled">
<li v-for="error in plan.errors.name" class="text-danger">
{{error}}
</li>
</ul>
</span>
</div>
<div class="form-group" v-bind:class="{ 'has-error': plan.errors.email && plan.errors.email.length }">
<label for="email">Email</label>
<input class="form-control" type="email" name="email" v-model="plan.email" placeholder="Email" required="">
<span class="help-block bg-danger" v-if="plan.errors.email && plan.errors.email.length">
<ul class="list-unstyled">
<li v-for="error in plan.errors.email" class="text-danger">
{{error}}
</li>
</ul>
</span>
</div>
<div class="form-group" v-bind:class="{ 'has-error': plan.errors.website && plan.errors.website.length }">
<label for="website">Website:</label>
<input class="form-control" type="text" name="website" v-model="plan.website" placeholder="Website" required="">
<span class="help-block bg-danger" v-if="plan.errors.website && plan.errors.website.length">
<ul class="list-unstyled">
<li v-for="error in plan.errors.website" class="text-danger">
{{error}}
</li>
</ul>
</span>
</div>
<div class="form-group" v-bind:class="{ 'has-error': plan.errors.projectdesc && plan.errors.projectdesc.length }">
<label for="projectdesc">Project Description</label>
<textarea rows="2" cols="80" class="form-control" type="text" name="projectdesc" v-model="plan.projectdesc" placeholder="Project Description" required=""> </textarea>
<span class="help-block bg-danger" v-if="plan.errors.projectdesc && plan.errors.projectdesc.length">
<ul class="list-unstyled">
<li v-for="error in plan.errors.projectdesc" class="text-danger">
{{error}}
</li>
</ul>
</span>
</div>
<div class="form-group" v-bind:class="{ 'has-error': plan.errors.phone && plan.errors.phone.length }">
<label for="phone">Phone Number</label>
<input class="form-control" type="text" name="phone" v-model="plan.phone" placeholder="Phone Number" required="">
<span class="help-block bg-danger" v-if="plan.errors.phone && plan.errors.phone.length">
<ul class="list-unstyled">
<li v-for="error in plan.errors.phone" class="text-danger">
{{error}}
</li>
</ul>
</span>
</div>
<div style="text-align: center;">
<button type="submit" id="businessplan-btn" class="btn btn-success techbankBlueBtn" v-if="!plan.processing"> Submit Business Plan </button>
<button type="button" id="businessplan-btn" disabled="disabled" class="btn btn-success techbankBlueBtn" v-if="plan.processing"> Processing... <i class="fa fa-spinner fa-spin"></i>
</button>
</div>
</form>
Text Content
* Login * Open an Account Today * * Get the app now * 1. 1 2. 2 * Previous * Next * 9,870,183 TRANSACTIONS * 9,963 MERCHANTS * 108 COUNTRIES * 458 DEALS BUY AND SELL DIGITAL ASSETS OVER 1,091,812 MEMBERS ARE ONBOARD, SO WHAT ARE YOU WAITING FOR? Join Us WHY CHOOSE TECHBANK? Exchange fiat Currencies like USD, EUR, GBP, INR, AUD, CAD, PLN & many more to the crypto of your choice like BTC, ETH, BCH, LTC, CCRB etc. Load your fiat or crypto wallets with the available funding methods and instantly start trading with crypto and vice versa. We're all about giving back! When you shop through TechBank, we receive a commission and share it with you in Bitcoin & CCRB. Instantly Load your TechBank virtual crypto linked Card and start earning Cryptocurrency while you shop at your favourite brands. Cryptocurrency arbitrage allows you to take advantage of those price differences, buying a crypto on one exchange where the price is low and then immediately selling it on another exchange where the price is high. Trade with Crypto now WE HAVE WHAT YOU NEED personal account Business Loyalty Account For Developers We're all about giving back! When you shop through TechBank, we receive a commission and share it with you in Bitcoin. Join over 1 million users in our ecosystem. Download the App Open a business account and launch your own crypto rewards program in minutes. Get direct access to exchanges, Payment Processors, transfer and receive funds worldwide and so much more. Download the app TechBank handles all KYC/AML verification requirements and handle customer's crypto assets. All you need to do is do what you do best, provide the best software platform to exchange Crypto to Fiat and vice versa. get in touch TechBank handles all KYC/AML verification requirements and handle customer's crypto assets. All you need to do is do what you do best, provide the best software platform to exchange Crypto to Fiat and vice versa. get in touch PERSONAL ACCOUNT Supercharge your spending with crypto rewards on all in-store purchases. Earn up to 1.5% back in BTC every time you use your credEcard Visa card in shops, restaurants, on transport and more. We don`t limit what you do with your rewards; your money, your rules. get your card BUSINESS LOYALTY ACCOUNT Open a business account and launch your own crypto rewards program in minutes. Get direct access to exchanges, Payment Processors, transfer and receive funds worldwide and so much more. get the app DEVELOPERS TechBank handles all KYC/AML verification requirements and handle customer's crypto assets. All you need to do is do what you do best, provide the best software platform to exchange Crypto to Fiat and vice versa. get in touch OUR APPS CEFITECHBANK CEFITECHBANK No Cards - No Fiat - No Fees. Buy, Sell and manage your crypto over 60 popular Currencies in one place. We have built a fully functional and secure platform to manage your crypto portfolio. Our live App directly connects customers with local and international brands by allowing users to spend crypto with ease using our cutting-edge technology. The retailer API connected with the App issues instant e-codes, which can be scanned at checkout or redeemed online globally at major brands. DEFITECHBANK DWALLETTM DEFITECHBANK DWALLETTM Whether you are an experienced user or brand new to blockchain, TechBank Dwallet helps you connect to the decentralized web: a new internet. We're trusted by millions of people across the world, and our mission is to make this new decentralized web accessible to all. OUR TEAM Marketing Team Development team advisers Partners Meet Us SUBASH G MANUAL CEO & FOUNDER ANAND JOHN SUPPORT MANAGER THOMAS CHACKO BUSINESS DEVELOPMENT MANAGER PRAJOON DIGITAL MARKETING HEAD AKHIL ANTONY CTO SURESH KAMAL CTO AMAL EAPPEN SENIOR BUSINESS ANALYST AJEESH K S BACKEND DEVELOPER VAISHNAV RAJAN UI / UX DESIGNER SANJU MATHEW FRONTEND DEVELOPER RIJU ANTONY FRONTEND DEVELOPER AKHIL CHANDRAN IOS DEVELOPER DHANYA IOS DEVELOPER JITHISH P N ANDROID DEVELOPER ANSAL RABIN ANDROID DEVELOPER SARATH RAJ PROJECT MANAGER JERIN THOMAS QUALITY ANALYST Join Our Team OUR TEAM REGULARY SPEAKS AT AND ATTENDS INDUSTRY EVENTS 26THAPRIL 2018 - KAP EUROPA, FRANKFURT Subash Manuel, CEO & Founder of CCRB, will be speaking at this years Blockchain Summit event. 26THAPRIL 2018 - KAP EUROPA, FRANKFURT Subash Manuel, CEO & Founder of CCRB, will be speaking at this years Blockchain Summit event. 26THAPRIL 2018 - KAP EUROPA, FRANKFURT Subash Manuel, CEO & Founder of CCRB, will be speaking at this years Blockchain Summit event. GET IN TOUCH Drop in a message and we will get back to you as soon as we can. Send deposit and withdraw crypto funds instantly to any crypto exchange around the world. CONTACT US SUPPORT@TECHBANK.FINANCE Submit a form FIND US LONDON TechBank, 20-22 Wenlock Road, London, N1 7GU CONTACT US SUPPORT@TECHBANK.FINANCE Submit a form FIND US * * * * * * * * COPYRIGHT © 2021 * Terms and Policies * TechBank manages the custodial crypto asset services including the custodial crypto wallet services and crypto to crypto and crypto to fiat trade services offered through this platform. The Financial Ombudsman Service or the Financial Services Compensation Scheme do not apply to the crypto asset activities carried on by CryptoCarbon Global LTD X SUBMIT A BUSINESS PLAN Your Name Email Website: Project Description Phone Number Submit Business Plan LOGIN Email address Password Forgot password? Sign In NOT A MEMBER? SIGN UP SIGN UP Open a beautifully simple app-based global multi-currency account in minutes & start collecting free bitcoin from your favourite brands instantly. * * X * Sign In * Sign Up OPEN A BEAUTIFULLY SIMPLE APP-BASED GLOBAL MULTI-CURRENCY ACCOUNT IN MINUTES START COLLECTING FREE BITCOIN FROM YOUR FAVOURITE BRANDS INSTANTLY. VERIFY YOUR EMAIL Thanks for creating an account! We sent a verification email to {{signup.email}} Click the link in the email to get started! Email didn't arrive? Resend verification email Resending Verification... Email: * {{error}} Password: * {{error}} > * {{error}} Create account Signing Up... Send me saving tips and offer emails. By clicking submit you agree to our Terms & Privacy Policy. Already have an account? SIGN IN X SUBMIT A BUSINESS PLAN Your Name * {{error}} Email * {{error}} Website: * {{error}} Project Description * {{error}} Phone Number * {{error}} Submit Business Plan Processing...