bookhotel.code-hint.in Open in urlscan Pro
2a02:4780:11:1046:0:391e:76f7:6  Public Scan

URL: https://bookhotel.code-hint.in/
Submission: On November 06 via api from US — Scanned from US

Form analysis 5 forms found in the DOM

<form id="login-form">
  <div class="modal-header">
    <h5 class="modal-title d-flex align-items-center"><i class="bi bi-person-circle fs-3 me-2"></i> User Login</h5>
    <button type="reset" class="btn-close shadow-none" data-bs-dismiss="modal" aria-label="Close"></button>
  </div>
  <div class="modal-body">
    <div class="mb-3">
      <label class="form-label">Email / Mobile</label>
      <input type="text" name="email_mob" class="form-control shadow-none" required="">
    </div>
    <div class="mb-4">
      <label class="form-label">Password</label>
      <input type="text" name="pass" class="form-control shadow-none" required="">
    </div>
    <div class="d-flex align-items-center justify-content-between mb-2">
      <button type="submit" class="btn btn-dark shodow-none">Login </button>
      <button type="button" class="btn text-secondary text-decoration-none shadow-none p-0" data-bs-toggle="modal" data-bs-target="#forgotModel" data-bs-dismiss="modal"> Forgot Password? </button>
    </div>
  </div>
</form>

<form id="register-form">
  <div class="modal-header">
    <h5 class="modal-title d-flex align-items-center"><i class="bi bi-person-lines-fill fs-3 me-2"></i> User Register</h5>
    <button type="reset" class="btn-close shadow-none" data-bs-dismiss="modal" aria-label="Close"></button>
  </div>
  <div class="modal-body">
    <span class="badge rounded-pill bg-light text-dark mb-3 text-wrap lh-base"> Note: Your details must match your ID.(Adhaar card , Passport , Driving license,etc.) that will be required during check-in </span>
    <div class="container-fluid">
      <div class="row">
        <div class="col-md-6 mb-3">
          <label class="form-label">Name</label>
          <input name="name" type="text" class="form-control shadow-none" required="">
        </div>
        <div class="col-md-6 mb-3">
          <label class="form-label">Email</label>
          <input name="email" type="email" class="form-control shadow-none" required="">
        </div>
        <div class="col-md-6  mb-3">
          <label class="form-label">Phone Number</label>
          <input name="phonenum" type="number" class="form-control shadow-none" required="">
        </div>
        <div class="col-md-6 mb-3">
          <label class="form-label">Picture</label>
          <input name="profile" type="file" accept=".jpg, .jpeg, .png, .webp" class="form-control shadow-none" required="">
        </div>
        <div class="col-md-12 mb-3">
          <label class="form-label">Address</label>
          <textarea name="address" class="form-control shadow-none" rows="1" required=""></textarea>
        </div>
        <div class="col-md-6 mb-3">
          <label class="form-label">Pin Code</label>
          <input name="pincode" type="number" class="form-control shadow-none" required="">
        </div>
        <div class="col-md-6 mb-3">
          <label class="form-label">Date of Birth</label>
          <input name="dob" type="date" class="form-control shadow-none" required="">
        </div>
        <div class="col-md-6 mb-3">
          <label class="form-label">Password</label>
          <input name="pass" type="password" class="form-control shadow-none" required="">
        </div>
        <div class="col-md-6 mb-3">
          <label class="form-label">Confirm Password</label>
          <input name="cpass" type="password" class="form-control shadow-none" required="">
        </div>
      </div>
    </div>
    <div class="text-center my-1">
      <button type="submit" class="btn btn-dark shodow-none">Register </button>
    </div>
  </div>
</form>

<form id="forgot-form">
  <div class="modal-header">
    <h5 class="modal-title d-flex align-items-center"><i class="bi bi-person-circle fs-3 me-2"></i> Forgot Password</h5>
  </div>
  <div class="modal-body">
    <span class="badge rounded-pill bg-light text-dark mb-3 text-wrap lh-base"> Note: A Link will be sent to your email to reset your password </span>
    <div class="mb-4">
      <label class="form-label">Email</label>
      <input type="email" name="email" class="form-control shadow-none" required="">
    </div>
    <div class="mb-2 text-end">
      <button type="button" class="btn shadow-none p-0 me-2" data-bs-toggle="modal" data-bs-target="#LoginModel" data-bs-dismiss="modal"> CANCEL </button>
      <button type="submit" class="btn btn-dark shodow-none">SEND LINK </button>
    </div>
  </div>
</form>

rooms.php

<form action="rooms.php">
  <div class="row align-items-end">
    <div class="col-lg-3 mb-3">
      <label class="form-label" style="font-weight:500;">Check-In</label>
      <input type="date" class="form-control shadow-none" name="checkin" required="">
    </div>
    <div class="col-lg-3 mb-3">
      <label class="form-label" style="font-weight:500;">Check-out</label>
      <input type="date" class="form-control shadow-none" name="checkout" required="">
    </div>
    <div class="col-lg-3 mb-3">
      <label class="form-label" style="font-weight:500;"> Adult</label>
      <select class="form-select shadow-none" name="adult">
        <option value="1">1</option>
        <option value="2">2</option>
        <option value="3">3</option>
        <option value="4">4</option>
        <option value="5">5</option>
        <option value="6">6</option>
      </select>
    </div>
    <div class="col-lg-2 mb-3">
      <label class="form-label" style="font-weight:500;"> Children</label>
      <select class="form-select shadow-none" name="children">
        <option value="1">1</option>
        <option value="2">2</option>
        <option value="3">3</option>
      </select>
    </div>
    <input type="hidden" name="check_availability">
    <div class="col-lg-1 mt-2 mb-lg-3">
      <button type="submit" class="btn text-white shadow-none custom-bg"> Submit </button>
    </div>
  </div>
</form>

<form id="recovery-form">
  <div class="modal-header">
    <h5 class="modal-title d-flex align-items-center"><i class="bi bi-shield-lock fs-3 me-2"></i> Setup New Password</h5>
  </div>
  <div class="modal-body">
    <div class="mb-4">
      <label class="form-label">New Password</label>
      <input type="password" name="pass" class="form-control shadow-none" required="">
      <input type="hidden" name="email">
      <input type="hidden" name="token">
    </div>
    <div class="mb-2 text-end">
      <button type="button" class="btn shadow-none me-2" data-bs-dismiss="modal"> CANCEL </button>
      <button type="submit" class="btn btn-dark shodow-none">SUMBIT </button>
    </div>
  </div>
</form>

Text Content

7Star Hotel
 * Home
 * Rooms
 * Facilities
 * Contact us
 * About

Login Register

USER LOGIN

Email / Mobile
Password
Login Forgot Password?

USER REGISTER

Note: Your details must match your ID.(Adhaar card , Passport , Driving
license,etc.) that will be required during check-in
Name
Email
Phone Number
Picture
Address
Pin Code
Date of Birth
Password
Confirm Password
Register

FORGOT PASSWORD

Note: A Link will be sent to your email to reset your password
Email
CANCEL SEND LINK


CHECK AVAILABILITIES

Check-In
Check-out
Adult 123456
Children 123
Submit


OUR ROOMS

NORMAL ROOM

₹3900 PER NIGHT

FEATURES

Bedroom Balcony Kitchen

FACILITIES

Wifi Geyser Spa Air Conditioner Television Room Heater

GUESTS

2 Adults 2 Children

RATINGS

Book Now More Details

DELUXE ROOM

₹7000 PER NIGHT

FEATURES

Bedroom Balcony bathroom

FACILITIES

Wifi Geyser Air Conditioner Television Room Heater

GUESTS

6 Adults 3 Children

RATINGS

Book Now More Details

SIMPLE ROOM

₹12000 PER NIGHT

FEATURES

Bedroom Balcony

FACILITIES

Wifi Geyser

GUESTS

2 Adults 3 Children

RATINGS

Book Now More Details
More Rooms >>>


OUR FACILITIES

ROOM HEATER

TELEVISION

AIR CONDITIONER

SPA

GEYSER

More Facilities >>>


TESTIMONIAL

SIDDU

The hotel's location was convenient, offering easy access . Whether for leisure
or business, its location enhanced the overall experience.



SIDDU

The hotel's facilities, including facilities such as pool, gym, spa, etc. were
well-maintained and easily accessible. They added great value to my stay,
providing ample opportunities for relaxation an



SIDDU

The dining options provided delicious meals with a diverse menu. The quality of
food and service at the restaurant exceeded my expectations. Special dietary
requests were handled with care.



AKASH

sdsad



SIDDU

nice rooms and satisfied with the service



SIDDU

Very nice room



Know More >>>


REACH US

CALL US

+919665785867
+917709231184

FOLLOW US

Twitter
Facebook
Instagram

SETUP NEW PASSWORD

New Password
CANCEL SUMBIT


7STAR HOTEL

Welcome to 7star, where hospitality meets comfort and luxury. Our story is one
of passion, commitment, and a desire to create unforgettable experiences for our
guests. Discover who we are, what we stand for, and why we believe 7star is the
perfect choice for your next stay.

LINKS

Home
Rooms
Facilities
Contact Us
About

FOLLOW US

Twitter
Facebook
Instagram


DESIGNED AND DEVELOPED BY CODE-HINT.IN