Memory Usage

32.3%
8,6,5,9,8,4,9,3,5,9

CPU Usage

140.05
4,3,5,7,12,10,4,5,11,7

Disk Usage

82.02%
1,2,1,3,2,10,4,12,7

Daily Traffic

62,201
3,12,7,9,2,3,4,5,2

IMG_43445

JPG Image

1.2mb

VID_6543

MP4 Video

24.8mb

Tax_Form

Word Document

5.5mb

Getting_Started

PDF Document

12.7mb

Introduction

PDF Document

7.7mb

IMG_43420

JPG Image

2.2mb

IMG_43447

JPG Image

3.2mb

VID_6545

AVI Video

14.8mb

Secret_Document

Word Document

4.5mb

+ Add Event

Form Wizards

jQuery Steps, an all-in-one wizard plugin that is extremely flexible, compact and feature-rich.

Below is an example of a basic horizontal form wizard.

Personal Information

Try the keyboard navigation by clicking arrow left or right!

Billing Information

Wonderful transition effects.

Payment Details

The next and previous buttons help you to navigate through your content.

<div id="wizard1">
  <h3>Personal Information</h3>
  <section>
    <p>Try the keyboard navigation by clicking arrow left or right!</p>
  </section>
  <h3>Billing Information</h3>
  <section>
    <p>Wonderful transition effects.</p>
  </section>
  <h3>Payment Details</h3>
  <section>
    <p>The next and previous buttons help you to navigate through your content.</p>
  </section>
</div>
$('#wizard1').steps({
  headerTag: 'h3',
  bodyTag: 'section',
  autoFocus: true,
  titleTemplate: '#index# #title#'
});

A basic form wizard with form validation using Parsley js form validation plugin.

Personal Information

Try the keyboard navigation by clicking arrow left or right!

Billing Information

Wonderful transition effects.

Payment Details

The next and previous buttons help you to navigate through your content.

onStepChanging: function (event, currentIndex, newIndex) {
  if(currentIndex < newIndex) {
    // Step 1 form validation
    if(currentIndex === 0) {
      var fname = $('#firstname').parsley();
      var lname = $('#lastname').parsley();

      if(fname.isValid() && lname.isValid()) {
        return true;
      } else {
        fname.validate();
        lname.validate();
      }
    }

    // Step 2 form validation
    if(currentIndex === 1) {
      var email = $('#email').parsley();
      if(email.isValid()) {
        return true;
      } else { email.validate(); }
    }
  // Always allow step back to the previous step even if the current step is not valid.
  } else { return true; }
}

A basic content wizard with vertical orientation.

Personal Information

Try the keyboard navigation by clicking arrow left or right!

Billing Information

Wonderful transition effects.

Payment Details

The next and previous buttons help you to navigate through your content.

stepsOrientation: 1

A basic wizard that adds a custom style to make the step indicator equal width.

Personal Information

Try the keyboard navigation by clicking arrow left or right!

Billing Information

Wonderful transition effects.

Payment Details

The next and previous buttons help you to navigate through your content.

cssClass: 'wizard step-equal-width'

Below are a simple styles for step indicaator of a wizard

Personal Information

Try the keyboard navigation by clicking arrow left or right!

Billing Information

Wonderful transition effects.

Payment Details

The next and previous buttons help you to navigate through your content.

cssClass: 'wizard wizard-style-1'

Personal Information

Try the keyboard navigation by clicking arrow left or right!

Billing Information

Wonderful transition effects.

Payment Details

The next and previous buttons help you to navigate through your content.

cssClass: 'wizard wizard-style-2'

Personal Information

Try the keyboard navigation by clicking arrow left or right!

Billing Information

Wonderful transition effects.

Payment Details

The next and previous buttons help you to navigate through your content.

cssClass: 'wizard wizard-style-3'