www.airsteam.ynotz.in Open in urlscan Pro
103.50.162.231  Public Scan

URL: https://www.airsteam.ynotz.in/
Submission: On March 14 via automatic, source certstream-suspicious — Scanned from DE

Form analysis 2 forms found in the DOM

POST https://www.airsteam.ynotz.in/web-enquiry

<form x-data="{
                                url: 'https://www.airsteam.ynotz.in/web-enquiry',
                                name: '',
                                email: '',
                                phone: '',
                                message: '',
                                result: false,
                                status: '',
                                responseMessage: '',
                                loading: false,
                                reset() {
                                    this.name = '';
                                    this.email = '';
                                    this.phone = '';
                                    this.message = '';
                                    this.result = false;
                                    this.status = '';
                                    this.responseMessage = '';
                                    this.loading = false;
                                },
                                submit() {
                                    this.loading = true;
                                    axios.post(
                                        this.url,
                                        {
                                            name: this.name,
                                            email: this.email,
                                            phone: this.phone,
                                            message: this.message,
                                        }
                                    )
                                    .then(
                                        (r) => {
                                                this.loading = false;
                                                console.log(r);
                                                console.log(r.data.success);
                                            if(r.data.success) {
                                                this.responseMessage = 'We have received your enquiry. Our team will get back to you soon.';
                                                this.status = 'success';
                                                this.result = true;
                                                console.log('positive');
                                            } else {
                                                this.responseMessage = 'Something went wrong. The form submission failed. Please check your internet connection.';
                                                this.status = 'failed';
                                                this.result = true;
                                                console.log('negative');
                                            }
                                            console.log('status:');
                                            console.log(this.status);
                                        }
                                    );
                                }
                            }" action="https://www.airsteam.ynotz.in/web-enquiry" method="POST" x-on:submit.prevent="submit()" class="relative">
  <div x-show="result" x-transition="" class="absolute z-20 top-0 left-0 w-full h-full flex flex-col justify-center items-center p-4 text-gray-50 bg-red-400" :class="status == 'success' ? 'bg-green-500' : 'bg-red-400'" style="display: none;">
    <p x-text="responseMessage" class="mb-4"></p>
    <p>
      <button x-on:click.prevent="reset();" class="bg-gray-50 text-gray-800 shadow-lg px-4 py-2"> Ok </button>
    </p>
  </div>
  <div x-show="loading" x-transition="" class="absolute z-20 top-0 left-0 w-full h-full flex flex-col justify-center items-center p-4 bg-gray-100 dark:bg-gray-800 bg-opacity-50 text-gray-50" style="display: none;">
    <img src="https://www.airsteam.ynotz.in/images/loading.gif" class="h-12 w-12" alt="Best cargo services in Kochi">
  </div>
  <input type="hidden" name="_token" value="mcDn4VztVzmvfJARe6HAt1PWJbaffMa5c1H9gmaf">
  <div class="py-1 relative mt-3 lg:mt-1">
    <input x-ref="name" type="text" id="name" name="name" x-model="name" class="peer w-full p-1 text-base bg-gray-50 dark:bg-gray-900 placeholder-transparent bg-opacity-0 dark:bg-opacity-0 border border-gray-400 dark:border-gray-600 z-30"
      placeholder="Your name" required="">
    <label x-on:click="$refs.name.focus();" for="name"
      class="absolute z-10 bg-gray-100 dark:bg-gray-900 -top-1 peer-placeholder-shown:top-2 peer-focus:-top-2 left-1 block px-1 text-left text-xs text-gray-600 dark:text-gray-400 peer-focus:text-xs peer-placeholder-shown:text-base  bg-opacity-40 peer-placeholder-shown:bg-opacity-0 peer-focus:bg-opacity-80 rounded transition-all">Your
      name</label>
  </div>
  <div class="py-1 relative mt-3 lg:mt-1">
    <input x-ref="email" type="email" id="email" name="email" x-model="email" class="peer w-full p-1 text-base bg-gray-50 dark:bg-gray-900 placeholder-transparent bg-opacity-0 dark:bg-opacity-0 border border-gray-400 dark:border-gray-600"
      placeholder="Email address" required="">
    <label x-on:click="$refs.email.focus();" for="email"
      class="absolute z-10 bg-gray-100 dark:bg-gray-900 -top-1 peer-placeholder-shown:top-2 peer-focus:-top-2 left-1 block px-1 text-left text-xs text-gray-600 dark:text-gray-400 peer-focus:text-xs peer-placeholder-shown:text-base  bg-opacity-40 peer-placeholder-shown:bg-opacity-0 peer-focus:bg-opacity-80 rounded transition-all">Email
      address:</label>
  </div>
  <div class="py-1 relative mt-3 lg:mt-1">
    <input x-ref="mobile" type="text" id="mobile" name="phone" x-model="phone" class="peer w-full p-1 text-base bg-gray-50 dark:bg-gray-900 placeholder-transparent bg-opacity-0 dark:bg-opacity-0 border border-gray-400 dark:border-gray-600"
      placeholder="Mobile number">
    <label x-on:click="$refs.mobile.focus();" for="mobile"
      class="absolute z-10 bg-gray-100 dark:bg-gray-900 -top-1 peer-placeholder-shown:top-2 peer-focus:-top-2 left-1 block px-1 text-left text-xs text-gray-600 dark:text-gray-400 peer-focus:text-xs peer-placeholder-shown:text-base  bg-opacity-40 peer-placeholder-shown:bg-opacity-0 peer-focus:bg-opacity-80 rounded transition-all">Mobile
      No.:</label>
  </div>
  <div class="py-1 relative mt-3 lg:mt-1">
    <textarea x-ref="message" name="message" id="message" x-model="message" rows="2"
      class="peer w-full p-1 text-base bg-gray-50 dark:bg-gray-900 placeholder-transparent bg-opacity-0 dark:bg-opacity-0 border border-gray-400 dark:border-gray-600" "="" placeholder=" Your message"></textarea>
    <label x-on:click="$refs.message.focus();" for="message"
      class="absolute z-10 bg-gray-100 dark:bg-gray-900 -top-1 peer-placeholder-shown:top-2 peer-focus:-top-2 left-1 block px-1 text-left text-xs text-gray-600 dark:text-gray-400 peer-focus:text-xs peer-placeholder-shown:text-base  bg-opacity-40 peer-placeholder-shown:bg-opacity-0 peer-focus:bg-opacity-80 rounded transition-all">Your
      message:</label>
  </div>
  <div class="py-1">
    <button type="submit"
      class="inline-flex items-center px-4 py-2 bg-logo-color border border-transparent rounded-md font-semibold text-xs text-white uppercase tracking-widest hover:bg-gray-700 active:bg-gray-900 focus:outline-none focus:border-gray-900 focus:ring ring-gray-300 disabled:opacity-25 transition ease-in-out duration-150 animate-pulse hover:animate-none">
      Submit </button>
  </div>
</form>

<form action="" class="p-2 bg-gray-200 dark-bg-gray-600 border-gray-300 dark:bg-gray-500 rounded-sm" x-on:submit.prevent="processForm">
  <h4 class="my-4 font-bold text-xl text-center">SEO Settings</h4>
  <hr class="w-full my-4 border border-gray-300">
  <div class="flex flex-row flex-wrap py-2">
    <label for="edit-pagetitle" class="w-full">Page Title:</label>
    <input id="edit-pagetitle" x-model="seotitle" type="text" name="seotitle" class="w-full bg-gray-50 dark:bg-gray-700 border border-gray-300 dark:border-gray-400">
  </div>
  <div class="flex flex-row flex-wrap justify-center py-2">
    <label class="w-full text-left">Meta Tags:</label>
    <div class="text-right">
      <template x-for="tag, index in metatags">
        <div class="w-full flex flex-row space-x-2 justify-between items-center mb-4">
          <input class="bg-gray-50 dark:bg-gray-700 border border-gray-300 dark:border-gray-400 text-gray-700 dark:text-gray-100" type="text" x-model="tag.meta_name" placeholder="name">
          <input class="bg-gray-50 dark:bg-gray-700 border border-gray-300 dark:border-gray-400 text-gray-700 dark:text-gray-100" type="text" x-model="tag.meta_content" placeholder="content">
          <button x-on:click.prevent.stop="removeTag(index);" class="p-1 bg-red-400  border border-gray-700 dark:border-gray-100 inline-block cursor-pointer rounded-sm text-gray-100 flex flex-row justify-center items-center"><span
              class="inline-block h-4 w-4">
              <svg xmlns="http://www.w3.org/2000/svg" class="h-full w-full" viewBox="0 0 20 20" fill="currentColor">
                <path fill-rule="evenodd" d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z"
                  clip-rule="evenodd"></path>
              </svg>
            </span></button>
        </div>
      </template>
      <div class="w-full flex flex-row space-x-2 justify-between items-center mb-4">
        <input class="bg-gray-50 dark:bg-gray-700 border border-gray-300 dark:border-gray-400 text-gray-700 dark:text-gray-100" type="text" x-model="tag.meta_name" placeholder="name">
        <input class="bg-gray-50 dark:bg-gray-700 border border-gray-300 dark:border-gray-400 text-gray-700 dark:text-gray-100" type="text" x-model="tag.meta_content" placeholder="content">
        <button x-on:click.prevent.stop="removeTag(index);" class="p-1 bg-red-400  border border-gray-700 dark:border-gray-100 inline-block cursor-pointer rounded-sm text-gray-100 flex flex-row justify-center items-center"><span
            class="inline-block h-4 w-4">
            <svg xmlns="http://www.w3.org/2000/svg" class="h-full w-full" viewBox="0 0 20 20" fill="currentColor">
              <path fill-rule="evenodd" d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z"
                clip-rule="evenodd"></path>
            </svg>
          </span></button>
      </div>
      <div class="w-full flex flex-row justify-start">
        <button x-on:click.prevent.stop="addTag();" class="px-4 py-1 bg-gray-600 dark:bg-gray-200  border border-gray-700 dark:border-gray-100 inline-block cursor-pointer rounded-sm text-gray-100 dark:text-gray-700 font-bold"><span
            class="inline-block h-4 w-4">
            <svg xmlns="http://www.w3.org/2000/svg" class="h-full w-full" viewBox="0 0 20 20" fill="currentColor">
              <path fill-rule="evenodd" d="M10 3a1 1 0 011 1v5h5a1 1 0 110 2h-5v5a1 1 0 11-2 0v-5H4a1 1 0 110-2h5V4a1 1 0 011-1z" clip-rule="evenodd"></path>
            </svg>
          </span>Add</button>
      </div>
      <div class="w-full flex flex-row justify-between">
        <button x-on:click.prevent.stop="showmetaform = false;" class="px-4 py-1 text-yellow-500 dark:text-yellow-400">Cancel</button>
        <button class="px-4 py-1 bg-yellow-500 dark:bg-yellow-500  border border-yellow-600 dark:border-yellow-600 inline-block cursor-pointer rounded-sm text-gray-100 dark:text-gray-700 font-bold">Save</button>
      </div>
    </div>
  </div>
</form>

Text Content

Ok

Display Mode Display Mode
+91 9778725551

Home About Services FAQ Gallery Contact
Home About Services Blog Gallery Contact


AIRSTEAM LOGISTICS


INTERNATIONAL CARGO SERVICES

GET IN TOUCH

Ok


Your name
Email address:
Mobile No.:
Your message:
Submit


AIR FREIGHT

Fastest shipping, timely delivery. When delivery time is your prime concern, our
air services are the one you can trust.

OCEAN FREIGHT

Bulk Shipping, Economical Packages. For the most cost effective & safe shipping
choose our ocean freight services.

360O SUPPORT

Door To Door Service. From pick-up to delivery, we handle it all including
warehouseing, customs clearance and documentation.


EXPAND YOUR NETWORK WITH THE BEST CARGO SERVICES IN KOCHI

RECENT UPDATES

Partner with the Best logistics service provider

Best Air Cargo Company in Kochi

Best Logistics Company in Ernakulam

The International Freight forwarder in Kochi

Read More

LATEST NEWS

The size of your cargo doesn't matter in the case of its transportation The size
of your cargo doesn't matter in the case of its transportation. Because...
We deliver your goods to any destination based on your requirements The
destination doesn't matter in the case of delivery. We deliver your goods to...
You Wont Get the Time To Wait Your Packages Will Reach That Fast You won't get
the time to wait, your packages will reach that fast. Contact Now:...
Visit Gallery

> A WELL EXPERIENCED TEAM
> 
> Our professional team brings in over one and a half decades of experience in
> providing global logistics solutions. With our extensive global network of
> agents, partners and vendors we provide you unmatched efficiency at unbeatable
> prices.

WHY CHOOSE US?

We understand your needs. Transportation of goods is a critical part of your
business process. A lapse may cost you not only time and money, but even
reputation of your brand. With our hands-on approach and personalized customer
service, you won't ever have to worry about your supply chain logistics.

Some of the highlights of our services are:

 * MULTIMODAL TRANSPORT: AIR, OCEAN & GROUND

 * 360O CARE: DOOR TO DOOR SERVICE, WITH ALL DOCUMENTATION AND CLEARANCES.

 * ONLINE CONSIGNMENT TRACKING.


CHOOSE THE BEST INTERNATIONAL CARGO SERVICES FOR YOUR BUSINESS

LET'S KEEP IN TOUCH!

FIND US ON ANY OF THESE PLATFORMS, WE RESPOND 1-2 BUSINESS DAYS.


Quick Links
 * About Us
 * Our Services
 * Contact Us
 * FAQs

Our Offices
 * Delhi
 * Bangalore
 * Coimbatore
 * Cochin

--------------------------------------------------------------------------------

Copyright © 2021 Airsteam Logistics
Powered by YNOTZ Web Solutions

SEO Settings

SEO SETTINGS

--------------------------------------------------------------------------------

Page Title:
Meta Tags:
Add
Cancel Save



Ok
test