autoconfig.school.scholerly.com Open in urlscan Pro
2a01:4f9:2a:200a::2  Public Scan

URL: https://autoconfig.school.scholerly.com/
Submission: On May 23 via api from US — Scanned from FI

Form analysis 5 forms found in the DOM

POST https://school.scholerly.com/course/guestsignup

<form action="https://school.scholerly.com/course/guestsignup" method="post" class="signupform" id="signupform">
  <div class="modal-body">
    <div class="form-group">
      <label>Name</label><small class="req"> *</small>
      <input type="text" class="form-control reg_name" name="name" id="name" autocomplete="off">
      <span class="text-danger" id="error_refno"></span>
    </div>
    <div class="form-group mb10">
      <label>Email ID</label><small class="req"> *</small>
      <input type="text" class="form-control reg_email" name="email" id="email" autocomplete="off">
      <span class="text-danger" id="error_dob"></span>
    </div>
    <div class="form-group mb10">
      <label>Password</label><small class="req"> *</small>
      <input type="password" class="form-control reg_password" name="password" id="password" autocomplete="off">
      <span class="text-danger" id="error_dob"></span>
    </div>
    <div id="load_signup_captcha"></div>
  </div>
  <div class="modal-footer">
    <button type="button" class="modalclosebtn btn  mdbtn" onclick="openmodal()">Login</button>
    <button type="submit" id="signupformbtn" class="onlineformbtn mdbtn">Sign Up </button>
  </div>
</form>

POST https://school.scholerly.com/course/guestlogin

<form action="https://school.scholerly.com/course/guestlogin" method="post" class="loginform" id="loginform">
  <div class="modal-body">
    <div class="form-group mb10">
      <label>Email ID</label><small class="req"> *</small>
      <input type="text" class="form-control login_email" name="username" id="username" autocomplete="off">
      <span class="text-danger" id="error_dob"></span>
    </div>
    <div class="form-group mb10">
      <label>Password</label><small class="req"> *</small>
      <input type="password" class="form-control login_password" name="password" id="password" autocomplete="off">
      <input type="hidden" class="form-control" name="checkout_status" id="checkout_status" autocomplete="off">
      <span class="text-danger" id="error_dob"></span>
    </div>
    <div id="load_login_captcha"></div>
  </div>
  <div class="modal-footer">
    <a href="#" class="pull-left forgotbtn" data-toggle="modal" data-target="#forgotmodal"><i class="fa fa-key"></i> Forgot Password</a>
    <button type="button" class="signup modalclosebtn btn mdbtn" data-dismiss="modal">Sign Up </button>
    <button type="submit" id="loginformbtn" class="onlineformbtn mdbtn">Submit</button>
  </div>
</form>

POST https://school.scholerly.com/course/user_submit_login

<form action="https://school.scholerly.com/course/user_submit_login" method="post" class="gauthenticate-form" id="gauthenticate-form">
  <div class="modal-body">
    <div class="form-group mb10">
      <label>Verification Code</label><small class="req"> *</small>
      <input type="text" class="form-control gauth_code" name="gauth_code" id="gauth_code" autocomplete="off">
      <span class="text-danger" id="error_gauth_code"></span>
    </div>
  </div>
  <div class="modal-footer">
    <a href="#" class="pull-left forgotbtn" data-toggle="modal" data-target="#forgotmodal"><i class="fa fa-key"></i> Forgot Password</a>
    <button type="button" class="signup modalclosebtn btn mdbtn" data-dismiss="modal">Sign Up </button>
    <button type="submit" id="loginformbtn" class="onlineformbtn mdbtn" data-loading-text="<i class='fa fa-spinner fa-spin '></i> wait...">Submit</button>
  </div>
</form>

POST #

<form action="#" method="post" class="loginform" id="forgotform">
  <div class="modal-body">
    <div class="form-group mb10">
      <label>Email ID</label><small class="req"> *</small>
      <input type="email" class="form-control" name="username" id="email" autocomplete="off">
      <span class="text-danger" id="error_email"></span>
    </div>
  </div>
  <div class="modal-footer">
    <button type="button" class="modalclosebtn btn  mdbtn" onclick="openmodal()">Login</button>
    <button type="submit" id="forgotformbtn" class="onlineformbtn mdbtn">Submit</button>
  </div>
</form>

Name: reservation_formPOST includes/reservation.php

<form id="reservation_form" name="reservation_form" class="reservation-form mt-20" method="post" action="includes/reservation.php" novalidate="novalidate">
  <div class="row">
    <div class="col-sm-12">
      <div class="form-group mb-20">
        <input placeholder="Enter Name" type="text" id="reservation_name" name="reservation_name" required="" class="form-control" aria-required="true">
      </div>
    </div>
    <div class="col-sm-6">
      <div class="form-group mb-20">
        <input placeholder="Email" type="text" id="reservation_email" name="reservation_email" class="form-control" required="" aria-required="true">
      </div>
    </div>
    <div class="col-sm-6">
      <div class="form-group mb-20">
        <input placeholder="Phone" type="text" id="reservation_phone" name="reservation_phone" class="form-control" required="" aria-required="true">
      </div>
    </div>
    <div class="col-sm-6">
      <div class="form-group mb-20">
        <div class="styled-select mt-0">
          <select id="person_select" name="person_select" class="form-control" required="" aria-required="true">
            <option value="">Academics</option>
            <option value="1 Person">Foundation Group</option>
            <option value="2 Person">Preparatory Group</option>
            <option value="3 Person">Middle School</option>
            <option value="Family Pack">High School</option>
          </select>
        </div>
      </div>
    </div>
    <div class="col-sm-6">
      <div class="form-group mb-20">
        <input name="Date" class="form-control required date-picker" type="text" placeholder="Date" aria-required="true">
      </div>
    </div>
    <div class="col-sm-12">
      <div class="form-group">
        <textarea placeholder="Enter Message" rows="3" class="form-control required" name="form_message" id="form_message" aria-required="true"></textarea>
      </div>
    </div>
    <div class="col-sm-12">
      <div class="form-group mb-0 mt-10">
        <input name="form_botcheck" class="form-control" type="hidden" value="">
        <button type="submit" class="btn btn-colored btn-default text-black btn-lg btn-block" data-loading-text="Please wait...">Submit Request</button>
      </div>
    </div>
  </div>
</form>

Text Content

 * Call Us at +91 080 22264952 / 08022250245
 * principal@sjrc.edu.in
 * Login


× Home About Us
Overview Chairman's Message Principal's Message Board of Trustees Governing
Council Our Institutions
Academics
Department Of Science Department Of Commerce Department Off Arts
Admission
Admission Procedure Apply Online Terms & Conditions
Faculty & Staff
Academic Staff Administrative Staff
Facilities
Science Lab Computer Lab Smart Class Library Transportation Infrastructure
Scouts & Guides
News & Events Gallery
Photo Gallery Video Gallery
Contact Us Login


 * S J R P U COLLEGE

 * Sri Jagadguru Renukacharya College of Science, Arts and Commerce # 9, Race
   Course Road, Ananda Rao Circle, Bengaluru - 560 009
 * 080 22264952 / 08022250245
 * principal@sjrc.edu.in
 * www.sjrc.edu.in

 * 
 * 
 * 
 * 
 * 

☰
 * Home
 * About Us
 * Academics
 * Admission
 * Facilities
 * News & Events
 * Gallery
 * Contact Us

×

GUEST REGISTRATION

Name *
Email ID *
Password *

Login Sign Up
×

LOGIN

Email ID *
Password *

Forgot Password Sign Up Submit
Verification Code *
Forgot Password Sign Up Submit
×

FORGOT PASSWORD

Email ID *
Login Submit

Previous Next


WELCOME TO SCHOLERLY

Scholerly is a international leader in teaching students to write effectively,
learn from each other and think for themselves.


OUR BEST STUDY INSTITUTE

Scholerly is a international leader in teaching students to write effectively,
learn from each other and think for themselves.


BEST ONLINE CERTIFICATION

Scholerly is a international leader in teaching students to write effectively,
learn from each other and think for themselves.


OUR BEST STUDY INSTITUTE

Scholerly is a international leader in teaching students to write effectively,
learn from each other and think for themselves.

Previous Next


CURRICULUM

Lorem ipsum dolor sit , elit.Acque quidem eaque, totam magni cumque.

Read More


ADMISSION

Lorem ipsum dolor sit , elit.Acque quidem eaque, totam magni cumque.

Read More


APPLY ONLINE

Lorem ipsum dolor sit , elit.Acque quidem eaque, totam magni cumque.

Read More


WELCOME TO SCHOLERLY EDUCATION

Scholerly Education feels proud and happy that they started ICSE syllabus in the
year 1990 . We started with the Pre-primary session in the year 1990 and
gradually, as years passed by, classes increased till X std.

The first batch of the students successfully completed X board exams in the year
1993. We get 100% results every year.

Read more


EVENT HIGHLIGHTS

 * 28
 * Feb

GEAR UP FOR GIVING

at 5.00 pm - 7.30 pm Bangalore

Lorem ipsum dolor sit amet

 * 28
 * Feb

GEAR UP FOR GIVING

at 5.00 pm - 7.30 pm Bangalore

Lorem ipsum dolor sit amet

 * 28
 * Feb

GEAR UP FOR GIVING

at 5.00 pm - 7.30 pm Bangalore

Lorem ipsum dolor sit amet

 * 28
 * Feb

GEAR UP FOR GIVING

at 5.00 pm - 7.30 pm Bangalore

Lorem ipsum dolor sit amet

 * 28
 * Feb

GEAR UP FOR GIVING

at 5.00 pm - 7.30 pm Bangalore

Lorem ipsum dolor sit amet


WHY CHOOSE US?

BEST LAB

Practical experiences for lifetime learning keeping in tune with modern times.

Read More...

BEST TEACHERS

The best teacher is one who is passionate about their subject, is knowledgeable.

Read More...

BEST LIBRARY

We make sure students understand, books are the lifeline of education.

Read More...


OUR FACILITES

Modern school facilities reflect an institutions commitment to fostering an
atmosphere where students can thrive academically, physically, and socially.

Read More

SCIENCE LAB

COMPUTER LAB

LIBRARY

TRANSPORTATION


OUR ADMISSION QUERY

We care for children, protect their welfare, and prepare them for the future are
the most important issues we face during our lifetime.

STEP 1 - ENQUIRY

We recieve calls, emails, whats app messages, etc. Furthermore, we schedule a
call and give an appointment to visit the campus for a detailed discussion.

STEP 2 - WALK-IN

At this step the Parent is introduced to the School, The parent is now given an
overview of the school, its resources, its curriculum, oits tour, its costs,
etc.

STEP 3 - REGISTRATION

Parent will pay the registration fees and will be given an application form. The
filled form will be collected with details and along with necessary documents.

STEP 4 - ADMISSION

Once the prospective student is assessed and granted admission, the Parent will
have to do the needful payment of fees and the admission will be confirmed
accordingly


GET REGISTERED!

Academics Foundation Group Preparatory Group Middle School High School


Submit Request


OUR SUCCESS

Lorem ipsum dolor simply dummy text of the printing and typesetting industry.
Lorem Ipsum has been the industry's standard dummy text ever since the 1500s


900



ACADEMIC STUDENTS


60



PROFESSIONAL TEACHERS


25K



ALUMINS


50



AWARDS


OUR CURRICULUM

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Possimus hic suscipit
doloremque deleniti ipsa quia dolor laborum natus tenetur, excepturi?

FOUNDATION GROUP

Each class has a dedicated teacher supported by their assistant which provides
an excellent teacher student ratio.

Read More

PREPARATORY GROUP

Our academics are child-centered, combining traditional system of education with
respect to curriculum and training

Read More

MIDDLE SCHOOL

Through the middle Years Programme, designed for students aged 11 to 14,
teachers extend the academic teaching by helping

Read More

HIGH SCHOOL

Team work and collaborative learning is encouraged. Trained counsellors to
mentor both children and staff members.

Read More


OUR CLIENT'S SAY

Lorem Ipsum has been the industry's standard dummy text ever, when an took a
galley of type and it to make a type book.It has survived the leap into

JHON DOE

Web Developer (Maneger)

Lorem Ipsum has been the industry's standard dummy text ever, when an took a
galley of type and it to make a type book.It has survived the leap into

JHON DOE

Web Developer1 (Maneger)

Lorem Ipsum has been the industry's standard dummy text ever, when an took a
galley of type and it to make a type book.It has survived the leap into

JHON DOE

Web Developer33 (Maneger)

Lorem Ipsum has been the industry's standard dummy text ever, when an took a
galley of type and it to make a type book.It has survived the leap into

JHON DOE

Web Developer55 (Maneger)


LATEST NEWS

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Pariatur quidem
temporibus quisquam voluptas natus, provident porro et odio perferendis ipsam,
amet sint


CHILDREN’S DAY

 * Nov - 14
 * Rajajinagar, Bangalore

Children's Day is celebrated in India to raise awareness about the rights,
education.

Read more


KANNADA RAJYOTSAVA

 * Nov - 1
 * Rajajinagar, Bangalore

The celebration of Kannada Rajyotsava includes many activities such as hoisting
of the state flag.

Read more


INDEPENDENCE DAY

 * Aug - 15
 * Rajajinagar, Bangalore

Independence Daycelebrated on 15th August. It marks the day when the country
gained independence

Read more


LATEST NEWS

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Pariatur quidem
temporibus quisquam voluptas natus, provident porro et odio perferendis ipsam,
amet sint


CHILDREN’S DAY

 * Nov - 14
 * Rajajinagar, Bangalore

Children's Day is celebrated in India to raise awareness about the rights,
education.

Read more


KANNADA RAJYOTSAVA

 * Nov - 1
 * Rajajinagar, Bangalore

The celebration of Kannada Rajyotsava includes many activities such as hoisting
of the state flag.

Read more


INDEPENDENCE DAY

 * Aug - 15
 * Rajajinagar, Bangalore

Independence Daycelebrated on 15th August. It marks the day when the country
gained independence

Read more

Facebook

GooglePlus

Enquiry

Instagram

Whatsapp

Call Now


ABOUT US

SJRC PU College is one of India's top research and teaching universities, and it
is situated in Bangalore. The university is dedicated to offering students
"navigation for the real world"—information that encourages them to discover
their true north.When they graduate, our students will be equipped to adjust to
a world that is rapidly advancing both intellectually and technologically. With
the help of the management, employees, parents, and students over the years, we
have been able to achieve this.

CONNECT WITH US

 * 
 * 
 * 
 * 
 * 


USEFUL LINKS

 * Home
 * About
 * Gallery
 * Contact Us


REACH US

 * Sri Jagadguru Renukacharya College of Science, Arts and Commerce # 9, Race
   Course Road, Ananda Rao Circle, Bengaluru - 560 009
 * +91 98456 81712 / 91080 26317
 * principal@sjrc.edu.in
 * www.sjrc.edu.in

Copyright ©2023 SJR PU College. All Rights Reserved