├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── LICENSE ├── README.md ├── SECURITY.md ├── application ├── .htaccess ├── composer.json ├── composer.lock ├── config │ ├── config.php.sample │ └── index.html ├── include │ ├── core_handler.php │ ├── database.php │ ├── functions.php │ ├── index.html │ ├── status.php │ ├── user.php │ └── vote.php ├── index.html ├── language │ ├── chinese-simplified.php │ ├── chinese-traditional.php │ ├── english.php │ ├── french.php │ ├── german.php │ ├── index.html │ ├── italian.php │ ├── korean.php │ ├── persian.php │ ├── portugues.php │ ├── russian.php │ ├── spanish.php │ └── swedish.php └── loader.php ├── favicon.ico ├── index.php ├── screenshots ├── 1.jpg ├── 2.jpg ├── 3.jpg ├── 4.jpg ├── 5.jpg ├── a-bfa-min.jpg ├── a-cata-min.jpg ├── a-legion-min.jpg ├── a-lichking-min.jpg ├── a-mop-min.jpg ├── a-tbc-min.jpg ├── a-vanilla-min.jpg ├── a-wod-min.jpg ├── b1.jpg ├── i1.jpg ├── i2.jpg ├── i3.jpg ├── i4.jpg ├── i5.jpg ├── k1.jpg ├── k2.jpg ├── k3.jpg ├── k4.jpg ├── k5.jpg └── k6.jpg └── template ├── advance ├── .htaccess ├── assets │ ├── css │ │ └── style.css │ ├── img │ │ ├── bg-image.jpg │ │ ├── demonhunter.png │ │ ├── invincible.png │ │ ├── jaina.png │ │ ├── logo-1.png │ │ ├── logo.png │ │ ├── sylvanas.png │ │ └── wow-bg │ │ │ ├── 0-1.jpg │ │ │ ├── 0-2.jpg │ │ │ ├── 0-3.jpg │ │ │ ├── 0-4.jpg │ │ │ ├── 0-5.jpg │ │ │ ├── 0-6.jpg │ │ │ ├── 1-1.jpg │ │ │ ├── 1-2.jpg │ │ │ ├── 1-3.jpg │ │ │ ├── 1-4.jpg │ │ │ ├── 1-5.jpg │ │ │ ├── 1-6.jpg │ │ │ ├── 2-1.jpg │ │ │ ├── 2-2.jpg │ │ │ ├── 2-3.jpg │ │ │ ├── 2-4.jpg │ │ │ ├── 2-5.jpg │ │ │ ├── 2-6.jpg │ │ │ ├── 3-1.jpg │ │ │ ├── 3-2.jpg │ │ │ ├── 3-3.jpg │ │ │ ├── 3-4.jpg │ │ │ ├── 3-5.jpg │ │ │ ├── 3-6.jpg │ │ │ ├── 4-1.jpg │ │ │ ├── 4-2.jpg │ │ │ ├── 4-3.jpg │ │ │ ├── 4-4.jpg │ │ │ ├── 4-5.jpg │ │ │ ├── 4-6.jpg │ │ │ ├── 5-1.jpg │ │ │ ├── 5-2.jpg │ │ │ ├── 5-3.jpg │ │ │ ├── 5-4.jpg │ │ │ ├── 5-5.jpg │ │ │ ├── 5-6.jpg │ │ │ ├── 6-1.jpg │ │ │ ├── 6-2.jpg │ │ │ ├── 6-3.jpg │ │ │ ├── 6-4.jpg │ │ │ ├── 6-5.jpg │ │ │ ├── 6-6.jpg │ │ │ ├── 7-1.jpg │ │ │ ├── 7-2.jpg │ │ │ ├── 7-3.jpg │ │ │ ├── 7-4.jpg │ │ │ ├── 7-5.jpg │ │ │ └── 7-6.jpg │ ├── js │ │ └── main.js │ └── vendor │ │ ├── aos │ │ ├── aos.css │ │ └── aos.js │ │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ │ ├── boxicons │ │ ├── css │ │ │ ├── animations.css │ │ │ ├── boxicons.css │ │ │ ├── boxicons.min.css │ │ │ └── transformations.css │ │ └── fonts │ │ │ ├── boxicons.eot │ │ │ ├── boxicons.svg │ │ │ ├── boxicons.ttf │ │ │ ├── boxicons.woff │ │ │ └── boxicons.woff2 │ │ ├── icofont │ │ ├── fonts │ │ │ ├── icofont.woff │ │ │ └── icofont.woff2 │ │ └── icofont.min.css │ │ ├── isotope-layout │ │ ├── isotope.pkgd.js │ │ └── isotope.pkgd.min.js │ │ ├── jquery-sticky │ │ └── jquery.sticky.js │ │ ├── jquery.easing │ │ └── jquery.easing.min.js │ │ ├── jquery │ │ ├── jquery.min.js │ │ └── jquery.min.map │ │ ├── owl.carousel │ │ ├── LICENSE │ │ ├── README.md │ │ ├── assets │ │ │ ├── ajax-loader.gif │ │ │ ├── owl.carousel.css │ │ │ ├── owl.carousel.min.css │ │ │ ├── owl.theme.default.css │ │ │ ├── owl.theme.default.min.css │ │ │ ├── owl.theme.green.css │ │ │ ├── owl.theme.green.min.css │ │ │ └── owl.video.play.png │ │ ├── owl.carousel.js │ │ └── owl.carousel.min.js │ │ ├── php-email-form │ │ └── validate.js │ │ └── venobox │ │ ├── venobox.css │ │ ├── venobox.js │ │ ├── venobox.min.css │ │ └── venobox.min.js ├── images │ ├── class │ │ ├── 1.gif │ │ ├── 10.gif │ │ ├── 11.gif │ │ ├── 12.gif │ │ ├── 2.gif │ │ ├── 3.gif │ │ ├── 4.gif │ │ ├── 5.gif │ │ ├── 6.gif │ │ ├── 7.gif │ │ ├── 8.gif │ │ ├── 9.gif │ │ └── index.html │ ├── goldcoin.png │ ├── index.html │ ├── race │ │ ├── 1-0-0.gif │ │ ├── 1-0.gif │ │ ├── 1-1-0.gif │ │ ├── 1-1.gif │ │ ├── 10-0-0.gif │ │ ├── 10-0.gif │ │ ├── 10-1-0.gif │ │ ├── 10-1.gif │ │ ├── 11-0-0.gif │ │ ├── 11-0.gif │ │ ├── 11-1-0.gif │ │ ├── 11-1.gif │ │ ├── 2-0-0.gif │ │ ├── 2-0.gif │ │ ├── 2-1-0.gif │ │ ├── 2-1.gif │ │ ├── 22-0.gif │ │ ├── 22-1.gif │ │ ├── 24-0.gif │ │ ├── 24-1.gif │ │ ├── 25-0.gif │ │ ├── 25-1.gif │ │ ├── 26-0.gif │ │ ├── 26-1.gif │ │ ├── 27-0.gif │ │ ├── 27-1.gif │ │ ├── 28-0.gif │ │ ├── 28-1.gif │ │ ├── 29-0.gif │ │ ├── 29-1.gif │ │ ├── 3-0-0.gif │ │ ├── 3-0.gif │ │ ├── 3-1-0.gif │ │ ├── 3-1.gif │ │ ├── 30-0.gif │ │ ├── 30-1.gif │ │ ├── 31-0.gif │ │ ├── 31-1.gif │ │ ├── 32-0.gif │ │ ├── 32-1.gif │ │ ├── 34-0.gif │ │ ├── 34-1.gif │ │ ├── 35-0.gif │ │ ├── 35-1.gif │ │ ├── 36-0.gif │ │ ├── 36-1.gif │ │ ├── 4-0-0.gif │ │ ├── 4-0.gif │ │ ├── 4-1-0.gif │ │ ├── 4-1.gif │ │ ├── 5-0-0.gif │ │ ├── 5-0.gif │ │ ├── 5-1-0.gif │ │ ├── 5-1.gif │ │ ├── 6-0-0.gif │ │ ├── 6-0.gif │ │ ├── 6-1-0.gif │ │ ├── 6-1.gif │ │ ├── 7-0-0.gif │ │ ├── 7-0.gif │ │ ├── 7-1-0.gif │ │ ├── 7-1.gif │ │ ├── 8-0-0.gif │ │ ├── 8-0.gif │ │ ├── 8-1-0.gif │ │ ├── 8-1.gif │ │ ├── 9-0.gif │ │ ├── 9-1.gif │ │ └── index.html │ └── wow-logo.png ├── index.html └── tpl │ ├── contact.php │ ├── faq.php │ ├── footer.php │ ├── header.php │ ├── how-connect.php │ ├── index.html │ ├── main.php │ ├── rules.php │ └── server-info.php ├── battleforazeroth ├── css │ ├── bfa-style.css │ ├── bootstrap.min.css │ ├── flaticon.css │ ├── font-awesome.min.css │ ├── google-fonts.css │ ├── magnific-popup.css │ ├── media.css │ └── owl.carousel.css ├── fonts │ ├── Flaticon.eot │ ├── Flaticon.svg │ ├── Flaticon.ttf │ ├── Flaticon.woff │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ └── google-fonts │ │ ├── KFOlCnqEu92Fr1MmSU5fABc4EsA.woff2 │ │ ├── KFOlCnqEu92Fr1MmSU5fBBc4.woff2 │ │ ├── KFOlCnqEu92Fr1MmSU5fBxc4EsA.woff2 │ │ ├── KFOlCnqEu92Fr1MmSU5fCBc4EsA.woff2 │ │ ├── KFOlCnqEu92Fr1MmSU5fCRc4EsA.woff2 │ │ ├── KFOlCnqEu92Fr1MmSU5fChc4EsA.woff2 │ │ ├── KFOlCnqEu92Fr1MmSU5fCxc4EsA.woff2 │ │ ├── KFOlCnqEu92Fr1MmWUlfABc4EsA.woff2 │ │ ├── KFOlCnqEu92Fr1MmWUlfBBc4.woff2 │ │ ├── KFOlCnqEu92Fr1MmWUlfBxc4EsA.woff2 │ │ ├── KFOlCnqEu92Fr1MmWUlfCBc4EsA.woff2 │ │ ├── KFOlCnqEu92Fr1MmWUlfCRc4EsA.woff2 │ │ ├── KFOlCnqEu92Fr1MmWUlfChc4EsA.woff2 │ │ ├── KFOlCnqEu92Fr1MmWUlfCxc4EsA.woff2 │ │ ├── KFOmCnqEu92Fr1Mu4WxKOzY.woff2 │ │ ├── KFOmCnqEu92Fr1Mu4mxK.woff2 │ │ ├── KFOmCnqEu92Fr1Mu5mxKOzY.woff2 │ │ ├── KFOmCnqEu92Fr1Mu72xKOzY.woff2 │ │ ├── KFOmCnqEu92Fr1Mu7GxKOzY.woff2 │ │ ├── KFOmCnqEu92Fr1Mu7WxKOzY.woff2 │ │ ├── KFOmCnqEu92Fr1Mu7mxKOzY.woff2 │ │ ├── TK3_WkUHHAIjg75cFRf3bXL8LICs169vsUJiZTaR_2.woff2 │ │ ├── TK3_WkUHHAIjg75cFRf3bXL8LICs169vsUZiZQ_2.woff2 │ │ ├── TK3_WkUHHAIjg75cFRf3bXL8LICs169vsUhiZTaR_2.woff2 │ │ ├── TK3_WkUHHAIjg75cFRf3bXL8LICs169vsUliZTaR_2.woff2 │ │ ├── TK3_WkUHHAIjg75cFRf3bXL8LICs169vsUtiZTaR_2.woff2 │ │ ├── TK3_WkUHHAIjg75cFRf3bXL8LICs18NvsUJiZTaR.woff2 │ │ ├── TK3_WkUHHAIjg75cFRf3bXL8LICs18NvsUZiZQ.woff2 │ │ ├── TK3_WkUHHAIjg75cFRf3bXL8LICs18NvsUhiZTaR.woff2 │ │ ├── TK3_WkUHHAIjg75cFRf3bXL8LICs18NvsUliZTaR.woff2 │ │ ├── TK3_WkUHHAIjg75cFRf3bXL8LICs18NvsUtiZTaR.woff2 │ │ ├── TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvsUJiZTaR_2.woff2 │ │ ├── TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvsUZiZQ.woff2 │ │ ├── TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvsUhiZTaR.woff2 │ │ ├── TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvsUliZTaR_2.woff2 │ │ ├── TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvsUtiZTaR_2.woff2 │ │ ├── TK3_WkUHHAIjg75cFRf3bXL8LICs1xZosUJiZTaR.woff2 │ │ ├── TK3_WkUHHAIjg75cFRf3bXL8LICs1xZosUZiZQ.woff2 │ │ ├── TK3_WkUHHAIjg75cFRf3bXL8LICs1xZosUhiZTaR.woff2 │ │ ├── TK3_WkUHHAIjg75cFRf3bXL8LICs1xZosUliZTaR.woff2 │ │ └── TK3_WkUHHAIjg75cFRf3bXL8LICs1xZosUtiZTaR.woff2 ├── images │ ├── class │ │ ├── 1.gif │ │ ├── 10.gif │ │ ├── 11.gif │ │ ├── 12.gif │ │ ├── 2.gif │ │ ├── 3.gif │ │ ├── 4.gif │ │ ├── 5.gif │ │ ├── 6.gif │ │ ├── 7.gif │ │ ├── 8.gif │ │ ├── 9.gif │ │ └── index.html │ ├── index.html │ └── race │ │ ├── 1-0-0.gif │ │ ├── 1-0.gif │ │ ├── 1-1-0.gif │ │ ├── 1-1.gif │ │ ├── 10-0-0.gif │ │ ├── 10-0.gif │ │ ├── 10-1-0.gif │ │ ├── 10-1.gif │ │ ├── 11-0-0.gif │ │ ├── 11-0.gif │ │ ├── 11-1-0.gif │ │ ├── 11-1.gif │ │ ├── 2-0-0.gif │ │ ├── 2-0.gif │ │ ├── 2-1-0.gif │ │ ├── 2-1.gif │ │ ├── 22-0.gif │ │ ├── 22-1.gif │ │ ├── 24-0.gif │ │ ├── 24-1.gif │ │ ├── 25-0.gif │ │ ├── 25-1.gif │ │ ├── 26-0.gif │ │ ├── 26-1.gif │ │ ├── 27-0.gif │ │ ├── 27-1.gif │ │ ├── 28-0.gif │ │ ├── 28-1.gif │ │ ├── 29-0.gif │ │ ├── 29-1.gif │ │ ├── 3-0-0.gif │ │ ├── 3-0.gif │ │ ├── 3-1-0.gif │ │ ├── 3-1.gif │ │ ├── 30-0.gif │ │ ├── 30-1.gif │ │ ├── 31-0.gif │ │ ├── 31-1.gif │ │ ├── 32-0.gif │ │ ├── 32-1.gif │ │ ├── 34-0.gif │ │ ├── 34-1.gif │ │ ├── 35-0.gif │ │ ├── 35-1.gif │ │ ├── 36-0.gif │ │ ├── 36-1.gif │ │ ├── 4-0-0.gif │ │ ├── 4-0.gif │ │ ├── 4-1-0.gif │ │ ├── 4-1.gif │ │ ├── 5-0-0.gif │ │ ├── 5-0.gif │ │ ├── 5-1-0.gif │ │ ├── 5-1.gif │ │ ├── 6-0-0.gif │ │ ├── 6-0.gif │ │ ├── 6-1-0.gif │ │ ├── 6-1.gif │ │ ├── 7-0-0.gif │ │ ├── 7-0.gif │ │ ├── 7-1-0.gif │ │ ├── 7-1.gif │ │ ├── 8-0-0.gif │ │ ├── 8-0.gif │ │ ├── 8-1-0.gif │ │ ├── 8-1.gif │ │ ├── 9-0.gif │ │ ├── 9-1.gif │ │ └── index.html ├── img │ ├── 01.jpg │ ├── 02.jpg │ ├── 1.png │ ├── 2.png │ ├── alliance.png │ ├── bfa-logo.png │ ├── bg-content.png │ ├── bg-donate-list.png │ ├── bg-donate.jpg │ ├── bg-footer.png │ ├── bg-header.png │ ├── bg-island.png │ ├── bg-login.jpg │ ├── bg-media.png │ ├── bg-news.jpg │ ├── bg-news.png │ ├── bg-reg.jpg │ ├── bg-user.png │ ├── bg-warfronts.png │ ├── card-1.jpg │ ├── card-1.png │ ├── card-2.jpg │ ├── card-2.png │ ├── card-3.jpg │ ├── es5.jpg │ ├── favicon.ico │ ├── horde.png │ ├── icon-island-1.png │ ├── icon-island-2.png │ ├── index.html │ ├── logo.png │ ├── media │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ └── news │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ └── 6.jpg │ ├── ocho-border.png │ ├── play-active.png │ └── video.png ├── index.html ├── js │ ├── bootstrap.min.js │ ├── circle-progress.min.js │ ├── html5shiv.min.js │ ├── index.html │ ├── jquery-2.1.4.min.js │ ├── magnific-popup.min.js │ ├── main.js │ ├── owl.carousel.min.js │ └── respond.min.js └── tpl │ ├── contactus.php │ ├── footer.php │ ├── header.php │ ├── howtoconnect.php │ ├── index.html │ ├── main.php │ ├── rules.php │ └── server-info.php ├── icecrown ├── .htaccess ├── css │ ├── animate.css │ ├── bootsnav.css │ ├── bootstrap-grid.css │ ├── bootstrap-grid.min.css │ ├── bootstrap-reboot.css │ ├── bootstrap-reboot.min.css │ ├── bootstrap.css │ ├── bootstrap.min.css │ ├── index.html │ └── style.css ├── fonts │ ├── OpenSans-Regular.woff │ ├── OpenSans-Regular.woff2 │ └── index.html ├── images │ ├── class │ │ ├── 1.gif │ │ ├── 10.gif │ │ ├── 11.gif │ │ ├── 12.gif │ │ ├── 2.gif │ │ ├── 3.gif │ │ ├── 4.gif │ │ ├── 5.gif │ │ ├── 6.gif │ │ ├── 7.gif │ │ ├── 8.gif │ │ ├── 9.gif │ │ └── index.html │ ├── headerbar_bg.png │ ├── headerbar_bg2.png │ ├── index.html │ ├── race │ │ ├── 1-0-0.gif │ │ ├── 1-0.gif │ │ ├── 1-1-0.gif │ │ ├── 1-1.gif │ │ ├── 10-0-0.gif │ │ ├── 10-0.gif │ │ ├── 10-1-0.gif │ │ ├── 10-1.gif │ │ ├── 11-0-0.gif │ │ ├── 11-0.gif │ │ ├── 11-1-0.gif │ │ ├── 11-1.gif │ │ ├── 2-0-0.gif │ │ ├── 2-0.gif │ │ ├── 2-1-0.gif │ │ ├── 2-1.gif │ │ ├── 22-0.gif │ │ ├── 22-1.gif │ │ ├── 24-0.gif │ │ ├── 24-1.gif │ │ ├── 25-0.gif │ │ ├── 25-1.gif │ │ ├── 26-0.gif │ │ ├── 26-1.gif │ │ ├── 27-0.gif │ │ ├── 27-1.gif │ │ ├── 28-0.gif │ │ ├── 28-1.gif │ │ ├── 29-0.gif │ │ ├── 29-1.gif │ │ ├── 3-0-0.gif │ │ ├── 3-0.gif │ │ ├── 3-1-0.gif │ │ ├── 3-1.gif │ │ ├── 30-0.gif │ │ ├── 30-1.gif │ │ ├── 31-0.gif │ │ ├── 31-1.gif │ │ ├── 32-0.gif │ │ ├── 32-1.gif │ │ ├── 34-0.gif │ │ ├── 34-1.gif │ │ ├── 35-0.gif │ │ ├── 35-1.gif │ │ ├── 36-0.gif │ │ ├── 36-1.gif │ │ ├── 4-0-0.gif │ │ ├── 4-0.gif │ │ ├── 4-1-0.gif │ │ ├── 4-1.gif │ │ ├── 5-0-0.gif │ │ ├── 5-0.gif │ │ ├── 5-1-0.gif │ │ ├── 5-1.gif │ │ ├── 6-0-0.gif │ │ ├── 6-0.gif │ │ ├── 6-1-0.gif │ │ ├── 6-1.gif │ │ ├── 7-0-0.gif │ │ ├── 7-0.gif │ │ ├── 7-1-0.gif │ │ ├── 7-1.gif │ │ ├── 8-0-0.gif │ │ ├── 8-0.gif │ │ ├── 8-1-0.gif │ │ ├── 8-1.gif │ │ ├── 9-0.gif │ │ ├── 9-1.gif │ │ └── index.html │ ├── slide1.jpg │ └── wow-logo.png ├── index.html ├── js │ ├── bootsnav.js │ ├── bootstrap.bundle.min.js │ ├── bootstrap.min.js │ ├── index.html │ ├── jquery-3.3.1.min.js │ ├── jquery-3.3.1.slim.min.js │ └── popper.min.js ├── tpl │ ├── contactus.php │ ├── footer.php │ ├── header.php │ ├── howtoconnect.php │ ├── index.html │ ├── main.php │ └── rules.php └── video.mp4 ├── index.html ├── kaelthas ├── .htaccess ├── css │ ├── animate.css │ ├── bootsnav.css │ ├── bootstrap-grid.css │ ├── bootstrap-grid.min.css │ ├── bootstrap-reboot.css │ ├── bootstrap-reboot.min.css │ ├── bootstrap.css │ ├── bootstrap.min.css │ ├── index.html │ └── style.css ├── fonts │ ├── OpenSans-Regular.woff │ ├── OpenSans-Regular.woff2 │ └── index.html ├── images │ ├── class │ │ ├── 1.gif │ │ ├── 10.gif │ │ ├── 11.gif │ │ ├── 12.gif │ │ ├── 2.gif │ │ ├── 3.gif │ │ ├── 4.gif │ │ ├── 5.gif │ │ ├── 6.gif │ │ ├── 7.gif │ │ ├── 8.gif │ │ ├── 9.gif │ │ └── index.html │ ├── headerbar_bg.png │ ├── headerbar_bg2.png │ ├── index.html │ ├── race │ │ ├── 1-0-0.gif │ │ ├── 1-0.gif │ │ ├── 1-1-0.gif │ │ ├── 1-1.gif │ │ ├── 10-0-0.gif │ │ ├── 10-0.gif │ │ ├── 10-1-0.gif │ │ ├── 10-1.gif │ │ ├── 11-0-0.gif │ │ ├── 11-0.gif │ │ ├── 11-1-0.gif │ │ ├── 11-1.gif │ │ ├── 2-0-0.gif │ │ ├── 2-0.gif │ │ ├── 2-1-0.gif │ │ ├── 2-1.gif │ │ ├── 22-0.gif │ │ ├── 22-1.gif │ │ ├── 24-0.gif │ │ ├── 24-1.gif │ │ ├── 25-0.gif │ │ ├── 25-1.gif │ │ ├── 26-0.gif │ │ ├── 26-1.gif │ │ ├── 27-0.gif │ │ ├── 27-1.gif │ │ ├── 28-0.gif │ │ ├── 28-1.gif │ │ ├── 29-0.gif │ │ ├── 29-1.gif │ │ ├── 3-0-0.gif │ │ ├── 3-0.gif │ │ ├── 3-1-0.gif │ │ ├── 3-1.gif │ │ ├── 30-0.gif │ │ ├── 30-1.gif │ │ ├── 31-0.gif │ │ ├── 31-1.gif │ │ ├── 32-0.gif │ │ ├── 32-1.gif │ │ ├── 34-0.gif │ │ ├── 34-1.gif │ │ ├── 35-0.gif │ │ ├── 35-1.gif │ │ ├── 36-0.gif │ │ ├── 36-1.gif │ │ ├── 4-0-0.gif │ │ ├── 4-0.gif │ │ ├── 4-1-0.gif │ │ ├── 4-1.gif │ │ ├── 5-0-0.gif │ │ ├── 5-0.gif │ │ ├── 5-1-0.gif │ │ ├── 5-1.gif │ │ ├── 6-0-0.gif │ │ ├── 6-0.gif │ │ ├── 6-1-0.gif │ │ ├── 6-1.gif │ │ ├── 7-0-0.gif │ │ ├── 7-0.gif │ │ ├── 7-1-0.gif │ │ ├── 7-1.gif │ │ ├── 8-0-0.gif │ │ ├── 8-0.gif │ │ ├── 8-1-0.gif │ │ ├── 8-1.gif │ │ ├── 9-0.gif │ │ ├── 9-1.gif │ │ └── index.html │ ├── slide1.jpg │ └── wow-logo.png ├── index.html ├── js │ ├── bootsnav.js │ ├── bootstrap.bundle.min.js │ ├── bootstrap.min.js │ ├── index.html │ ├── jquery-3.3.1.min.js │ ├── jquery-3.3.1.slim.min.js │ └── popper.min.js ├── tpl │ ├── contactus.php │ ├── footer.php │ ├── header.php │ ├── howtoconnect.php │ ├── index.html │ ├── main.php │ ├── posts.php │ └── rules.php └── video.mp4 ├── languages ├── index.html └── persian │ ├── fonts │ ├── Vazir-Light-FD.eot │ ├── Vazir-Light-FD.ttf │ ├── Vazir-Light-FD.woff │ ├── Vazir-Light-FD.woff2 │ └── index.html │ └── index.html └── light ├── .htaccess ├── css ├── bootstrap-grid.css ├── bootstrap-grid.min.css ├── bootstrap-reboot.css ├── bootstrap-reboot.min.css ├── bootstrap.css ├── bootstrap.min.css ├── index.html └── style.css ├── fonts ├── OpenSans-Regular.woff ├── OpenSans-Regular.woff2 └── index.html ├── images ├── class │ ├── 1.gif │ ├── 10.gif │ ├── 11.gif │ ├── 12.gif │ ├── 2.gif │ ├── 3.gif │ ├── 4.gif │ ├── 5.gif │ ├── 6.gif │ ├── 7.gif │ ├── 8.gif │ ├── 9.gif │ └── index.html ├── index.html ├── race │ ├── 1-0-0.gif │ ├── 1-0.gif │ ├── 1-1-0.gif │ ├── 1-1.gif │ ├── 10-0-0.gif │ ├── 10-0.gif │ ├── 10-1-0.gif │ ├── 10-1.gif │ ├── 11-0-0.gif │ ├── 11-0.gif │ ├── 11-1-0.gif │ ├── 11-1.gif │ ├── 2-0-0.gif │ ├── 2-0.gif │ ├── 2-1-0.gif │ ├── 2-1.gif │ ├── 22-0.gif │ ├── 22-1.gif │ ├── 24-0.gif │ ├── 24-1.gif │ ├── 25-0.gif │ ├── 25-1.gif │ ├── 26-0.gif │ ├── 26-1.gif │ ├── 27-0.gif │ ├── 27-1.gif │ ├── 28-0.gif │ ├── 28-1.gif │ ├── 29-0.gif │ ├── 29-1.gif │ ├── 3-0-0.gif │ ├── 3-0.gif │ ├── 3-1-0.gif │ ├── 3-1.gif │ ├── 30-0.gif │ ├── 30-1.gif │ ├── 31-0.gif │ ├── 31-1.gif │ ├── 32-0.gif │ ├── 32-1.gif │ ├── 34-0.gif │ ├── 34-1.gif │ ├── 35-0.gif │ ├── 35-1.gif │ ├── 36-0.gif │ ├── 36-1.gif │ ├── 4-0-0.gif │ ├── 4-0.gif │ ├── 4-1-0.gif │ ├── 4-1.gif │ ├── 5-0-0.gif │ ├── 5-0.gif │ ├── 5-1-0.gif │ ├── 5-1.gif │ ├── 6-0-0.gif │ ├── 6-0.gif │ ├── 6-1-0.gif │ ├── 6-1.gif │ ├── 7-0-0.gif │ ├── 7-0.gif │ ├── 7-1-0.gif │ ├── 7-1.gif │ ├── 8-0-0.gif │ ├── 8-0.gif │ ├── 8-1-0.gif │ ├── 8-1.gif │ ├── 9-0.gif │ ├── 9-1.gif │ └── index.html └── wow-logo.png ├── index.html ├── js ├── bootstrap.bundle.min.js ├── bootstrap.min.js ├── index.html ├── jquery-3.3.1.min.js ├── jquery-3.3.1.slim.min.js ├── jquery.smartWizard.js └── popper.min.js └── tpl ├── contactus.php ├── footer.php ├── header.php ├── howtoconnect.php ├── index.html ├── main.php └── rules.php /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/SECURITY.md -------------------------------------------------------------------------------- /application/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/application/.htaccess -------------------------------------------------------------------------------- /application/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/application/composer.json -------------------------------------------------------------------------------- /application/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/application/composer.lock -------------------------------------------------------------------------------- /application/config/config.php.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/application/config/config.php.sample -------------------------------------------------------------------------------- /application/config/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/application/config/index.html -------------------------------------------------------------------------------- /application/include/core_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/application/include/core_handler.php -------------------------------------------------------------------------------- /application/include/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/application/include/database.php -------------------------------------------------------------------------------- /application/include/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/application/include/functions.php -------------------------------------------------------------------------------- /application/include/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/application/include/index.html -------------------------------------------------------------------------------- /application/include/status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/application/include/status.php -------------------------------------------------------------------------------- /application/include/user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/application/include/user.php -------------------------------------------------------------------------------- /application/include/vote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/application/include/vote.php -------------------------------------------------------------------------------- /application/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/application/index.html -------------------------------------------------------------------------------- /application/language/chinese-simplified.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/application/language/chinese-simplified.php -------------------------------------------------------------------------------- /application/language/chinese-traditional.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/application/language/chinese-traditional.php -------------------------------------------------------------------------------- /application/language/english.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/application/language/english.php -------------------------------------------------------------------------------- /application/language/french.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/application/language/french.php -------------------------------------------------------------------------------- /application/language/german.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/application/language/german.php -------------------------------------------------------------------------------- /application/language/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/application/language/index.html -------------------------------------------------------------------------------- /application/language/italian.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/application/language/italian.php -------------------------------------------------------------------------------- /application/language/korean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/application/language/korean.php -------------------------------------------------------------------------------- /application/language/persian.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/application/language/persian.php -------------------------------------------------------------------------------- /application/language/portugues.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/application/language/portugues.php -------------------------------------------------------------------------------- /application/language/russian.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/application/language/russian.php -------------------------------------------------------------------------------- /application/language/spanish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/application/language/spanish.php -------------------------------------------------------------------------------- /application/language/swedish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/application/language/swedish.php -------------------------------------------------------------------------------- /application/loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/application/loader.php -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/favicon.ico -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/index.php -------------------------------------------------------------------------------- /screenshots/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/screenshots/1.jpg -------------------------------------------------------------------------------- /screenshots/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/screenshots/2.jpg -------------------------------------------------------------------------------- /screenshots/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/screenshots/3.jpg -------------------------------------------------------------------------------- /screenshots/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/screenshots/4.jpg -------------------------------------------------------------------------------- /screenshots/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/screenshots/5.jpg -------------------------------------------------------------------------------- /screenshots/a-bfa-min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/screenshots/a-bfa-min.jpg -------------------------------------------------------------------------------- /screenshots/a-cata-min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/screenshots/a-cata-min.jpg -------------------------------------------------------------------------------- /screenshots/a-legion-min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/screenshots/a-legion-min.jpg -------------------------------------------------------------------------------- /screenshots/a-lichking-min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/screenshots/a-lichking-min.jpg -------------------------------------------------------------------------------- /screenshots/a-mop-min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/screenshots/a-mop-min.jpg -------------------------------------------------------------------------------- /screenshots/a-tbc-min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/screenshots/a-tbc-min.jpg -------------------------------------------------------------------------------- /screenshots/a-vanilla-min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/screenshots/a-vanilla-min.jpg -------------------------------------------------------------------------------- /screenshots/a-wod-min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/screenshots/a-wod-min.jpg -------------------------------------------------------------------------------- /screenshots/b1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/screenshots/b1.jpg -------------------------------------------------------------------------------- /screenshots/i1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/screenshots/i1.jpg -------------------------------------------------------------------------------- /screenshots/i2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/screenshots/i2.jpg -------------------------------------------------------------------------------- /screenshots/i3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/screenshots/i3.jpg -------------------------------------------------------------------------------- /screenshots/i4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/screenshots/i4.jpg -------------------------------------------------------------------------------- /screenshots/i5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/screenshots/i5.jpg -------------------------------------------------------------------------------- /screenshots/k1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/screenshots/k1.jpg -------------------------------------------------------------------------------- /screenshots/k2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/screenshots/k2.jpg -------------------------------------------------------------------------------- /screenshots/k3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/screenshots/k3.jpg -------------------------------------------------------------------------------- /screenshots/k4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/screenshots/k4.jpg -------------------------------------------------------------------------------- /screenshots/k5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/screenshots/k5.jpg -------------------------------------------------------------------------------- /screenshots/k6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/screenshots/k6.jpg -------------------------------------------------------------------------------- /template/advance/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/.htaccess -------------------------------------------------------------------------------- /template/advance/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/css/style.css -------------------------------------------------------------------------------- /template/advance/assets/img/bg-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/bg-image.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/demonhunter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/demonhunter.png -------------------------------------------------------------------------------- /template/advance/assets/img/invincible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/invincible.png -------------------------------------------------------------------------------- /template/advance/assets/img/jaina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/jaina.png -------------------------------------------------------------------------------- /template/advance/assets/img/logo-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/logo-1.png -------------------------------------------------------------------------------- /template/advance/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/logo.png -------------------------------------------------------------------------------- /template/advance/assets/img/sylvanas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/sylvanas.png -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/0-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/0-1.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/0-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/0-2.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/0-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/0-3.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/0-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/0-4.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/0-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/0-5.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/0-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/0-6.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/1-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/1-1.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/1-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/1-2.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/1-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/1-3.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/1-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/1-4.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/1-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/1-5.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/1-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/1-6.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/2-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/2-1.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/2-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/2-2.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/2-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/2-3.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/2-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/2-4.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/2-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/2-5.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/2-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/2-6.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/3-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/3-1.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/3-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/3-2.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/3-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/3-3.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/3-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/3-4.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/3-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/3-5.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/3-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/3-6.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/4-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/4-1.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/4-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/4-2.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/4-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/4-3.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/4-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/4-4.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/4-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/4-5.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/4-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/4-6.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/5-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/5-1.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/5-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/5-2.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/5-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/5-3.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/5-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/5-4.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/5-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/5-5.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/5-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/5-6.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/6-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/6-1.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/6-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/6-2.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/6-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/6-3.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/6-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/6-4.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/6-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/6-5.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/6-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/6-6.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/7-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/7-1.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/7-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/7-2.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/7-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/7-3.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/7-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/7-4.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/7-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/7-5.jpg -------------------------------------------------------------------------------- /template/advance/assets/img/wow-bg/7-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/img/wow-bg/7-6.jpg -------------------------------------------------------------------------------- /template/advance/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/js/main.js -------------------------------------------------------------------------------- /template/advance/assets/vendor/aos/aos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/aos/aos.css -------------------------------------------------------------------------------- /template/advance/assets/vendor/aos/aos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/aos/aos.js -------------------------------------------------------------------------------- /template/advance/assets/vendor/bootstrap/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/bootstrap/css/bootstrap-grid.css -------------------------------------------------------------------------------- /template/advance/assets/vendor/bootstrap/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/bootstrap/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /template/advance/assets/vendor/bootstrap/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/bootstrap/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /template/advance/assets/vendor/bootstrap/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/bootstrap/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /template/advance/assets/vendor/bootstrap/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/bootstrap/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /template/advance/assets/vendor/bootstrap/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/bootstrap/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /template/advance/assets/vendor/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /template/advance/assets/vendor/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /template/advance/assets/vendor/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /template/advance/assets/vendor/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /template/advance/assets/vendor/bootstrap/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/bootstrap/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /template/advance/assets/vendor/bootstrap/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/bootstrap/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /template/advance/assets/vendor/bootstrap/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/bootstrap/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /template/advance/assets/vendor/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /template/advance/assets/vendor/bootstrap/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/bootstrap/js/bootstrap.js.map -------------------------------------------------------------------------------- /template/advance/assets/vendor/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /template/advance/assets/vendor/bootstrap/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/bootstrap/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /template/advance/assets/vendor/boxicons/css/animations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/boxicons/css/animations.css -------------------------------------------------------------------------------- /template/advance/assets/vendor/boxicons/css/boxicons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/boxicons/css/boxicons.css -------------------------------------------------------------------------------- /template/advance/assets/vendor/boxicons/css/boxicons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/boxicons/css/boxicons.min.css -------------------------------------------------------------------------------- /template/advance/assets/vendor/boxicons/css/transformations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/boxicons/css/transformations.css -------------------------------------------------------------------------------- /template/advance/assets/vendor/boxicons/fonts/boxicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/boxicons/fonts/boxicons.eot -------------------------------------------------------------------------------- /template/advance/assets/vendor/boxicons/fonts/boxicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/boxicons/fonts/boxicons.svg -------------------------------------------------------------------------------- /template/advance/assets/vendor/boxicons/fonts/boxicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/boxicons/fonts/boxicons.ttf -------------------------------------------------------------------------------- /template/advance/assets/vendor/boxicons/fonts/boxicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/boxicons/fonts/boxicons.woff -------------------------------------------------------------------------------- /template/advance/assets/vendor/boxicons/fonts/boxicons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/boxicons/fonts/boxicons.woff2 -------------------------------------------------------------------------------- /template/advance/assets/vendor/icofont/fonts/icofont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/icofont/fonts/icofont.woff -------------------------------------------------------------------------------- /template/advance/assets/vendor/icofont/fonts/icofont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/icofont/fonts/icofont.woff2 -------------------------------------------------------------------------------- /template/advance/assets/vendor/icofont/icofont.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/icofont/icofont.min.css -------------------------------------------------------------------------------- /template/advance/assets/vendor/isotope-layout/isotope.pkgd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/isotope-layout/isotope.pkgd.js -------------------------------------------------------------------------------- /template/advance/assets/vendor/isotope-layout/isotope.pkgd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/isotope-layout/isotope.pkgd.min.js -------------------------------------------------------------------------------- /template/advance/assets/vendor/jquery-sticky/jquery.sticky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/jquery-sticky/jquery.sticky.js -------------------------------------------------------------------------------- /template/advance/assets/vendor/jquery.easing/jquery.easing.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/jquery.easing/jquery.easing.min.js -------------------------------------------------------------------------------- /template/advance/assets/vendor/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/jquery/jquery.min.js -------------------------------------------------------------------------------- /template/advance/assets/vendor/jquery/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/jquery/jquery.min.map -------------------------------------------------------------------------------- /template/advance/assets/vendor/owl.carousel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/owl.carousel/LICENSE -------------------------------------------------------------------------------- /template/advance/assets/vendor/owl.carousel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/owl.carousel/README.md -------------------------------------------------------------------------------- /template/advance/assets/vendor/owl.carousel/assets/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/owl.carousel/assets/ajax-loader.gif -------------------------------------------------------------------------------- /template/advance/assets/vendor/owl.carousel/owl.carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/owl.carousel/owl.carousel.js -------------------------------------------------------------------------------- /template/advance/assets/vendor/owl.carousel/owl.carousel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/owl.carousel/owl.carousel.min.js -------------------------------------------------------------------------------- /template/advance/assets/vendor/php-email-form/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/php-email-form/validate.js -------------------------------------------------------------------------------- /template/advance/assets/vendor/venobox/venobox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/venobox/venobox.css -------------------------------------------------------------------------------- /template/advance/assets/vendor/venobox/venobox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/venobox/venobox.js -------------------------------------------------------------------------------- /template/advance/assets/vendor/venobox/venobox.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/venobox/venobox.min.css -------------------------------------------------------------------------------- /template/advance/assets/vendor/venobox/venobox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/assets/vendor/venobox/venobox.min.js -------------------------------------------------------------------------------- /template/advance/images/class/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/class/1.gif -------------------------------------------------------------------------------- /template/advance/images/class/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/class/10.gif -------------------------------------------------------------------------------- /template/advance/images/class/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/class/11.gif -------------------------------------------------------------------------------- /template/advance/images/class/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/class/12.gif -------------------------------------------------------------------------------- /template/advance/images/class/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/class/2.gif -------------------------------------------------------------------------------- /template/advance/images/class/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/class/3.gif -------------------------------------------------------------------------------- /template/advance/images/class/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/class/4.gif -------------------------------------------------------------------------------- /template/advance/images/class/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/class/5.gif -------------------------------------------------------------------------------- /template/advance/images/class/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/class/6.gif -------------------------------------------------------------------------------- /template/advance/images/class/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/class/7.gif -------------------------------------------------------------------------------- /template/advance/images/class/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/class/8.gif -------------------------------------------------------------------------------- /template/advance/images/class/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/class/9.gif -------------------------------------------------------------------------------- /template/advance/images/class/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/class/index.html -------------------------------------------------------------------------------- /template/advance/images/goldcoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/goldcoin.png -------------------------------------------------------------------------------- /template/advance/images/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/index.html -------------------------------------------------------------------------------- /template/advance/images/race/1-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/1-0-0.gif -------------------------------------------------------------------------------- /template/advance/images/race/1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/1-0.gif -------------------------------------------------------------------------------- /template/advance/images/race/1-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/1-1-0.gif -------------------------------------------------------------------------------- /template/advance/images/race/1-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/1-1.gif -------------------------------------------------------------------------------- /template/advance/images/race/10-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/10-0-0.gif -------------------------------------------------------------------------------- /template/advance/images/race/10-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/10-0.gif -------------------------------------------------------------------------------- /template/advance/images/race/10-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/10-1-0.gif -------------------------------------------------------------------------------- /template/advance/images/race/10-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/10-1.gif -------------------------------------------------------------------------------- /template/advance/images/race/11-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/11-0-0.gif -------------------------------------------------------------------------------- /template/advance/images/race/11-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/11-0.gif -------------------------------------------------------------------------------- /template/advance/images/race/11-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/11-1-0.gif -------------------------------------------------------------------------------- /template/advance/images/race/11-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/11-1.gif -------------------------------------------------------------------------------- /template/advance/images/race/2-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/2-0-0.gif -------------------------------------------------------------------------------- /template/advance/images/race/2-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/2-0.gif -------------------------------------------------------------------------------- /template/advance/images/race/2-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/2-1-0.gif -------------------------------------------------------------------------------- /template/advance/images/race/2-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/2-1.gif -------------------------------------------------------------------------------- /template/advance/images/race/22-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/22-0.gif -------------------------------------------------------------------------------- /template/advance/images/race/22-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/22-1.gif -------------------------------------------------------------------------------- /template/advance/images/race/24-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/24-0.gif -------------------------------------------------------------------------------- /template/advance/images/race/24-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/24-1.gif -------------------------------------------------------------------------------- /template/advance/images/race/25-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/25-0.gif -------------------------------------------------------------------------------- /template/advance/images/race/25-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/25-1.gif -------------------------------------------------------------------------------- /template/advance/images/race/26-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/26-0.gif -------------------------------------------------------------------------------- /template/advance/images/race/26-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/26-1.gif -------------------------------------------------------------------------------- /template/advance/images/race/27-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/27-0.gif -------------------------------------------------------------------------------- /template/advance/images/race/27-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/27-1.gif -------------------------------------------------------------------------------- /template/advance/images/race/28-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/28-0.gif -------------------------------------------------------------------------------- /template/advance/images/race/28-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/28-1.gif -------------------------------------------------------------------------------- /template/advance/images/race/29-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/29-0.gif -------------------------------------------------------------------------------- /template/advance/images/race/29-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/29-1.gif -------------------------------------------------------------------------------- /template/advance/images/race/3-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/3-0-0.gif -------------------------------------------------------------------------------- /template/advance/images/race/3-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/3-0.gif -------------------------------------------------------------------------------- /template/advance/images/race/3-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/3-1-0.gif -------------------------------------------------------------------------------- /template/advance/images/race/3-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/3-1.gif -------------------------------------------------------------------------------- /template/advance/images/race/30-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/30-0.gif -------------------------------------------------------------------------------- /template/advance/images/race/30-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/30-1.gif -------------------------------------------------------------------------------- /template/advance/images/race/31-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/31-0.gif -------------------------------------------------------------------------------- /template/advance/images/race/31-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/31-1.gif -------------------------------------------------------------------------------- /template/advance/images/race/32-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/32-0.gif -------------------------------------------------------------------------------- /template/advance/images/race/32-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/32-1.gif -------------------------------------------------------------------------------- /template/advance/images/race/34-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/34-0.gif -------------------------------------------------------------------------------- /template/advance/images/race/34-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/34-1.gif -------------------------------------------------------------------------------- /template/advance/images/race/35-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/35-0.gif -------------------------------------------------------------------------------- /template/advance/images/race/35-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/35-1.gif -------------------------------------------------------------------------------- /template/advance/images/race/36-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/36-0.gif -------------------------------------------------------------------------------- /template/advance/images/race/36-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/36-1.gif -------------------------------------------------------------------------------- /template/advance/images/race/4-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/4-0-0.gif -------------------------------------------------------------------------------- /template/advance/images/race/4-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/4-0.gif -------------------------------------------------------------------------------- /template/advance/images/race/4-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/4-1-0.gif -------------------------------------------------------------------------------- /template/advance/images/race/4-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/4-1.gif -------------------------------------------------------------------------------- /template/advance/images/race/5-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/5-0-0.gif -------------------------------------------------------------------------------- /template/advance/images/race/5-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/5-0.gif -------------------------------------------------------------------------------- /template/advance/images/race/5-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/5-1-0.gif -------------------------------------------------------------------------------- /template/advance/images/race/5-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/5-1.gif -------------------------------------------------------------------------------- /template/advance/images/race/6-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/6-0-0.gif -------------------------------------------------------------------------------- /template/advance/images/race/6-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/6-0.gif -------------------------------------------------------------------------------- /template/advance/images/race/6-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/6-1-0.gif -------------------------------------------------------------------------------- /template/advance/images/race/6-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/6-1.gif -------------------------------------------------------------------------------- /template/advance/images/race/7-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/7-0-0.gif -------------------------------------------------------------------------------- /template/advance/images/race/7-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/7-0.gif -------------------------------------------------------------------------------- /template/advance/images/race/7-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/7-1-0.gif -------------------------------------------------------------------------------- /template/advance/images/race/7-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/7-1.gif -------------------------------------------------------------------------------- /template/advance/images/race/8-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/8-0-0.gif -------------------------------------------------------------------------------- /template/advance/images/race/8-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/8-0.gif -------------------------------------------------------------------------------- /template/advance/images/race/8-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/8-1-0.gif -------------------------------------------------------------------------------- /template/advance/images/race/8-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/8-1.gif -------------------------------------------------------------------------------- /template/advance/images/race/9-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/9-0.gif -------------------------------------------------------------------------------- /template/advance/images/race/9-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/9-1.gif -------------------------------------------------------------------------------- /template/advance/images/race/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/race/index.html -------------------------------------------------------------------------------- /template/advance/images/wow-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/images/wow-logo.png -------------------------------------------------------------------------------- /template/advance/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/index.html -------------------------------------------------------------------------------- /template/advance/tpl/contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/tpl/contact.php -------------------------------------------------------------------------------- /template/advance/tpl/faq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/tpl/faq.php -------------------------------------------------------------------------------- /template/advance/tpl/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/tpl/footer.php -------------------------------------------------------------------------------- /template/advance/tpl/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/tpl/header.php -------------------------------------------------------------------------------- /template/advance/tpl/how-connect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/tpl/how-connect.php -------------------------------------------------------------------------------- /template/advance/tpl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/tpl/index.html -------------------------------------------------------------------------------- /template/advance/tpl/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/tpl/main.php -------------------------------------------------------------------------------- /template/advance/tpl/rules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/tpl/rules.php -------------------------------------------------------------------------------- /template/advance/tpl/server-info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/advance/tpl/server-info.php -------------------------------------------------------------------------------- /template/battleforazeroth/css/bfa-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/css/bfa-style.css -------------------------------------------------------------------------------- /template/battleforazeroth/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/css/bootstrap.min.css -------------------------------------------------------------------------------- /template/battleforazeroth/css/flaticon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/css/flaticon.css -------------------------------------------------------------------------------- /template/battleforazeroth/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/css/font-awesome.min.css -------------------------------------------------------------------------------- /template/battleforazeroth/css/google-fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/css/google-fonts.css -------------------------------------------------------------------------------- /template/battleforazeroth/css/magnific-popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/css/magnific-popup.css -------------------------------------------------------------------------------- /template/battleforazeroth/css/media.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/battleforazeroth/css/owl.carousel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/css/owl.carousel.css -------------------------------------------------------------------------------- /template/battleforazeroth/fonts/Flaticon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/fonts/Flaticon.eot -------------------------------------------------------------------------------- /template/battleforazeroth/fonts/Flaticon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/fonts/Flaticon.svg -------------------------------------------------------------------------------- /template/battleforazeroth/fonts/Flaticon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/fonts/Flaticon.ttf -------------------------------------------------------------------------------- /template/battleforazeroth/fonts/Flaticon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/fonts/Flaticon.woff -------------------------------------------------------------------------------- /template/battleforazeroth/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /template/battleforazeroth/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /template/battleforazeroth/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /template/battleforazeroth/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /template/battleforazeroth/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /template/battleforazeroth/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /template/battleforazeroth/images/class/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/class/1.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/class/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/class/10.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/class/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/class/11.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/class/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/class/12.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/class/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/class/2.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/class/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/class/3.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/class/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/class/4.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/class/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/class/5.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/class/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/class/6.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/class/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/class/7.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/class/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/class/8.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/class/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/class/9.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/class/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/class/index.html -------------------------------------------------------------------------------- /template/battleforazeroth/images/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/index.html -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/1-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/1-0-0.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/1-0.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/1-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/1-1-0.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/1-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/1-1.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/10-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/10-0-0.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/10-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/10-0.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/10-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/10-1-0.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/10-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/10-1.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/11-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/11-0-0.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/11-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/11-0.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/11-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/11-1-0.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/11-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/11-1.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/2-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/2-0-0.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/2-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/2-0.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/2-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/2-1-0.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/2-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/2-1.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/22-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/22-0.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/22-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/22-1.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/24-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/24-0.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/24-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/24-1.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/25-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/25-0.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/25-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/25-1.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/26-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/26-0.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/26-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/26-1.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/27-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/27-0.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/27-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/27-1.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/28-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/28-0.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/28-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/28-1.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/29-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/29-0.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/29-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/29-1.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/3-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/3-0-0.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/3-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/3-0.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/3-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/3-1-0.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/3-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/3-1.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/30-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/30-0.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/30-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/30-1.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/31-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/31-0.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/31-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/31-1.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/32-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/32-0.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/32-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/32-1.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/34-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/34-0.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/34-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/34-1.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/35-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/35-0.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/35-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/35-1.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/36-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/36-0.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/36-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/36-1.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/4-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/4-0-0.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/4-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/4-0.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/4-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/4-1-0.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/4-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/4-1.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/5-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/5-0-0.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/5-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/5-0.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/5-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/5-1-0.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/5-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/5-1.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/6-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/6-0-0.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/6-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/6-0.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/6-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/6-1-0.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/6-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/6-1.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/7-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/7-0-0.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/7-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/7-0.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/7-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/7-1-0.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/7-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/7-1.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/8-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/8-0-0.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/8-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/8-0.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/8-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/8-1-0.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/8-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/8-1.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/9-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/9-0.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/9-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/9-1.gif -------------------------------------------------------------------------------- /template/battleforazeroth/images/race/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/images/race/index.html -------------------------------------------------------------------------------- /template/battleforazeroth/img/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/img/01.jpg -------------------------------------------------------------------------------- /template/battleforazeroth/img/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/img/02.jpg -------------------------------------------------------------------------------- /template/battleforazeroth/img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/img/1.png -------------------------------------------------------------------------------- /template/battleforazeroth/img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/img/2.png -------------------------------------------------------------------------------- /template/battleforazeroth/img/alliance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/img/alliance.png -------------------------------------------------------------------------------- /template/battleforazeroth/img/bfa-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/img/bfa-logo.png -------------------------------------------------------------------------------- /template/battleforazeroth/img/bg-content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/img/bg-content.png -------------------------------------------------------------------------------- /template/battleforazeroth/img/bg-donate-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/img/bg-donate-list.png -------------------------------------------------------------------------------- /template/battleforazeroth/img/bg-donate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/img/bg-donate.jpg -------------------------------------------------------------------------------- /template/battleforazeroth/img/bg-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/img/bg-footer.png -------------------------------------------------------------------------------- /template/battleforazeroth/img/bg-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/img/bg-header.png -------------------------------------------------------------------------------- /template/battleforazeroth/img/bg-island.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/img/bg-island.png -------------------------------------------------------------------------------- /template/battleforazeroth/img/bg-login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/img/bg-login.jpg -------------------------------------------------------------------------------- /template/battleforazeroth/img/bg-media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/img/bg-media.png -------------------------------------------------------------------------------- /template/battleforazeroth/img/bg-news.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/img/bg-news.jpg -------------------------------------------------------------------------------- /template/battleforazeroth/img/bg-news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/img/bg-news.png -------------------------------------------------------------------------------- /template/battleforazeroth/img/bg-reg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/img/bg-reg.jpg -------------------------------------------------------------------------------- /template/battleforazeroth/img/bg-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/img/bg-user.png -------------------------------------------------------------------------------- /template/battleforazeroth/img/bg-warfronts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/img/bg-warfronts.png -------------------------------------------------------------------------------- /template/battleforazeroth/img/card-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/img/card-1.jpg -------------------------------------------------------------------------------- /template/battleforazeroth/img/card-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/img/card-1.png -------------------------------------------------------------------------------- /template/battleforazeroth/img/card-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/img/card-2.jpg -------------------------------------------------------------------------------- /template/battleforazeroth/img/card-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/img/card-2.png -------------------------------------------------------------------------------- /template/battleforazeroth/img/card-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/img/card-3.jpg -------------------------------------------------------------------------------- /template/battleforazeroth/img/es5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/img/es5.jpg -------------------------------------------------------------------------------- /template/battleforazeroth/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/img/favicon.ico -------------------------------------------------------------------------------- /template/battleforazeroth/img/horde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/img/horde.png -------------------------------------------------------------------------------- /template/battleforazeroth/img/icon-island-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/img/icon-island-1.png -------------------------------------------------------------------------------- /template/battleforazeroth/img/icon-island-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/img/icon-island-2.png -------------------------------------------------------------------------------- /template/battleforazeroth/img/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/img/index.html -------------------------------------------------------------------------------- /template/battleforazeroth/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/img/logo.png -------------------------------------------------------------------------------- /template/battleforazeroth/img/media/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/img/media/1.png -------------------------------------------------------------------------------- /template/battleforazeroth/img/media/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/img/media/2.png -------------------------------------------------------------------------------- /template/battleforazeroth/img/media/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/img/media/3.png -------------------------------------------------------------------------------- /template/battleforazeroth/img/media/news/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/img/media/news/1.jpg -------------------------------------------------------------------------------- /template/battleforazeroth/img/media/news/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/img/media/news/2.jpg -------------------------------------------------------------------------------- /template/battleforazeroth/img/media/news/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/img/media/news/3.jpg -------------------------------------------------------------------------------- /template/battleforazeroth/img/media/news/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/img/media/news/4.jpg -------------------------------------------------------------------------------- /template/battleforazeroth/img/media/news/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/img/media/news/5.jpg -------------------------------------------------------------------------------- /template/battleforazeroth/img/media/news/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/img/media/news/6.jpg -------------------------------------------------------------------------------- /template/battleforazeroth/img/ocho-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/img/ocho-border.png -------------------------------------------------------------------------------- /template/battleforazeroth/img/play-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/img/play-active.png -------------------------------------------------------------------------------- /template/battleforazeroth/img/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/img/video.png -------------------------------------------------------------------------------- /template/battleforazeroth/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/index.html -------------------------------------------------------------------------------- /template/battleforazeroth/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/js/bootstrap.min.js -------------------------------------------------------------------------------- /template/battleforazeroth/js/circle-progress.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/js/circle-progress.min.js -------------------------------------------------------------------------------- /template/battleforazeroth/js/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/js/html5shiv.min.js -------------------------------------------------------------------------------- /template/battleforazeroth/js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/js/index.html -------------------------------------------------------------------------------- /template/battleforazeroth/js/jquery-2.1.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/js/jquery-2.1.4.min.js -------------------------------------------------------------------------------- /template/battleforazeroth/js/magnific-popup.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/js/magnific-popup.min.js -------------------------------------------------------------------------------- /template/battleforazeroth/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/js/main.js -------------------------------------------------------------------------------- /template/battleforazeroth/js/owl.carousel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/js/owl.carousel.min.js -------------------------------------------------------------------------------- /template/battleforazeroth/js/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/js/respond.min.js -------------------------------------------------------------------------------- /template/battleforazeroth/tpl/contactus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/tpl/contactus.php -------------------------------------------------------------------------------- /template/battleforazeroth/tpl/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/tpl/footer.php -------------------------------------------------------------------------------- /template/battleforazeroth/tpl/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/tpl/header.php -------------------------------------------------------------------------------- /template/battleforazeroth/tpl/howtoconnect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/tpl/howtoconnect.php -------------------------------------------------------------------------------- /template/battleforazeroth/tpl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/tpl/index.html -------------------------------------------------------------------------------- /template/battleforazeroth/tpl/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/tpl/main.php -------------------------------------------------------------------------------- /template/battleforazeroth/tpl/rules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/tpl/rules.php -------------------------------------------------------------------------------- /template/battleforazeroth/tpl/server-info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/battleforazeroth/tpl/server-info.php -------------------------------------------------------------------------------- /template/icecrown/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/.htaccess -------------------------------------------------------------------------------- /template/icecrown/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/css/animate.css -------------------------------------------------------------------------------- /template/icecrown/css/bootsnav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/css/bootsnav.css -------------------------------------------------------------------------------- /template/icecrown/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/css/bootstrap-grid.css -------------------------------------------------------------------------------- /template/icecrown/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /template/icecrown/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /template/icecrown/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /template/icecrown/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/css/bootstrap.css -------------------------------------------------------------------------------- /template/icecrown/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/css/bootstrap.min.css -------------------------------------------------------------------------------- /template/icecrown/css/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/css/index.html -------------------------------------------------------------------------------- /template/icecrown/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/css/style.css -------------------------------------------------------------------------------- /template/icecrown/fonts/OpenSans-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/fonts/OpenSans-Regular.woff -------------------------------------------------------------------------------- /template/icecrown/fonts/OpenSans-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/fonts/OpenSans-Regular.woff2 -------------------------------------------------------------------------------- /template/icecrown/fonts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/fonts/index.html -------------------------------------------------------------------------------- /template/icecrown/images/class/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/class/1.gif -------------------------------------------------------------------------------- /template/icecrown/images/class/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/class/10.gif -------------------------------------------------------------------------------- /template/icecrown/images/class/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/class/11.gif -------------------------------------------------------------------------------- /template/icecrown/images/class/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/class/12.gif -------------------------------------------------------------------------------- /template/icecrown/images/class/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/class/2.gif -------------------------------------------------------------------------------- /template/icecrown/images/class/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/class/3.gif -------------------------------------------------------------------------------- /template/icecrown/images/class/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/class/4.gif -------------------------------------------------------------------------------- /template/icecrown/images/class/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/class/5.gif -------------------------------------------------------------------------------- /template/icecrown/images/class/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/class/6.gif -------------------------------------------------------------------------------- /template/icecrown/images/class/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/class/7.gif -------------------------------------------------------------------------------- /template/icecrown/images/class/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/class/8.gif -------------------------------------------------------------------------------- /template/icecrown/images/class/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/class/9.gif -------------------------------------------------------------------------------- /template/icecrown/images/class/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/class/index.html -------------------------------------------------------------------------------- /template/icecrown/images/headerbar_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/headerbar_bg.png -------------------------------------------------------------------------------- /template/icecrown/images/headerbar_bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/headerbar_bg2.png -------------------------------------------------------------------------------- /template/icecrown/images/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/index.html -------------------------------------------------------------------------------- /template/icecrown/images/race/1-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/1-0-0.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/1-0.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/1-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/1-1-0.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/1-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/1-1.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/10-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/10-0-0.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/10-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/10-0.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/10-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/10-1-0.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/10-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/10-1.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/11-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/11-0-0.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/11-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/11-0.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/11-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/11-1-0.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/11-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/11-1.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/2-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/2-0-0.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/2-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/2-0.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/2-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/2-1-0.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/2-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/2-1.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/22-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/22-0.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/22-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/22-1.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/24-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/24-0.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/24-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/24-1.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/25-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/25-0.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/25-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/25-1.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/26-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/26-0.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/26-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/26-1.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/27-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/27-0.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/27-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/27-1.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/28-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/28-0.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/28-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/28-1.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/29-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/29-0.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/29-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/29-1.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/3-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/3-0-0.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/3-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/3-0.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/3-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/3-1-0.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/3-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/3-1.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/30-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/30-0.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/30-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/30-1.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/31-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/31-0.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/31-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/31-1.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/32-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/32-0.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/32-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/32-1.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/34-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/34-0.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/34-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/34-1.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/35-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/35-0.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/35-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/35-1.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/36-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/36-0.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/36-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/36-1.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/4-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/4-0-0.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/4-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/4-0.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/4-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/4-1-0.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/4-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/4-1.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/5-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/5-0-0.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/5-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/5-0.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/5-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/5-1-0.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/5-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/5-1.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/6-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/6-0-0.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/6-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/6-0.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/6-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/6-1-0.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/6-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/6-1.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/7-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/7-0-0.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/7-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/7-0.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/7-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/7-1-0.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/7-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/7-1.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/8-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/8-0-0.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/8-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/8-0.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/8-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/8-1-0.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/8-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/8-1.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/9-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/9-0.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/9-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/9-1.gif -------------------------------------------------------------------------------- /template/icecrown/images/race/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/race/index.html -------------------------------------------------------------------------------- /template/icecrown/images/slide1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/slide1.jpg -------------------------------------------------------------------------------- /template/icecrown/images/wow-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/images/wow-logo.png -------------------------------------------------------------------------------- /template/icecrown/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/index.html -------------------------------------------------------------------------------- /template/icecrown/js/bootsnav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/js/bootsnav.js -------------------------------------------------------------------------------- /template/icecrown/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /template/icecrown/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/js/bootstrap.min.js -------------------------------------------------------------------------------- /template/icecrown/js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/js/index.html -------------------------------------------------------------------------------- /template/icecrown/js/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/js/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /template/icecrown/js/jquery-3.3.1.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/js/jquery-3.3.1.slim.min.js -------------------------------------------------------------------------------- /template/icecrown/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/js/popper.min.js -------------------------------------------------------------------------------- /template/icecrown/tpl/contactus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/tpl/contactus.php -------------------------------------------------------------------------------- /template/icecrown/tpl/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/tpl/footer.php -------------------------------------------------------------------------------- /template/icecrown/tpl/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/tpl/header.php -------------------------------------------------------------------------------- /template/icecrown/tpl/howtoconnect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/tpl/howtoconnect.php -------------------------------------------------------------------------------- /template/icecrown/tpl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/tpl/index.html -------------------------------------------------------------------------------- /template/icecrown/tpl/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/tpl/main.php -------------------------------------------------------------------------------- /template/icecrown/tpl/rules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/tpl/rules.php -------------------------------------------------------------------------------- /template/icecrown/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/icecrown/video.mp4 -------------------------------------------------------------------------------- /template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/index.html -------------------------------------------------------------------------------- /template/kaelthas/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/.htaccess -------------------------------------------------------------------------------- /template/kaelthas/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/css/animate.css -------------------------------------------------------------------------------- /template/kaelthas/css/bootsnav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/css/bootsnav.css -------------------------------------------------------------------------------- /template/kaelthas/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/css/bootstrap-grid.css -------------------------------------------------------------------------------- /template/kaelthas/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /template/kaelthas/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /template/kaelthas/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /template/kaelthas/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/css/bootstrap.css -------------------------------------------------------------------------------- /template/kaelthas/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/css/bootstrap.min.css -------------------------------------------------------------------------------- /template/kaelthas/css/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/css/index.html -------------------------------------------------------------------------------- /template/kaelthas/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/css/style.css -------------------------------------------------------------------------------- /template/kaelthas/fonts/OpenSans-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/fonts/OpenSans-Regular.woff -------------------------------------------------------------------------------- /template/kaelthas/fonts/OpenSans-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/fonts/OpenSans-Regular.woff2 -------------------------------------------------------------------------------- /template/kaelthas/fonts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/fonts/index.html -------------------------------------------------------------------------------- /template/kaelthas/images/class/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/class/1.gif -------------------------------------------------------------------------------- /template/kaelthas/images/class/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/class/10.gif -------------------------------------------------------------------------------- /template/kaelthas/images/class/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/class/11.gif -------------------------------------------------------------------------------- /template/kaelthas/images/class/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/class/12.gif -------------------------------------------------------------------------------- /template/kaelthas/images/class/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/class/2.gif -------------------------------------------------------------------------------- /template/kaelthas/images/class/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/class/3.gif -------------------------------------------------------------------------------- /template/kaelthas/images/class/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/class/4.gif -------------------------------------------------------------------------------- /template/kaelthas/images/class/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/class/5.gif -------------------------------------------------------------------------------- /template/kaelthas/images/class/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/class/6.gif -------------------------------------------------------------------------------- /template/kaelthas/images/class/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/class/7.gif -------------------------------------------------------------------------------- /template/kaelthas/images/class/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/class/8.gif -------------------------------------------------------------------------------- /template/kaelthas/images/class/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/class/9.gif -------------------------------------------------------------------------------- /template/kaelthas/images/class/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/class/index.html -------------------------------------------------------------------------------- /template/kaelthas/images/headerbar_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/headerbar_bg.png -------------------------------------------------------------------------------- /template/kaelthas/images/headerbar_bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/headerbar_bg2.png -------------------------------------------------------------------------------- /template/kaelthas/images/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/index.html -------------------------------------------------------------------------------- /template/kaelthas/images/race/1-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/1-0-0.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/1-0.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/1-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/1-1-0.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/1-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/1-1.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/10-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/10-0-0.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/10-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/10-0.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/10-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/10-1-0.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/10-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/10-1.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/11-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/11-0-0.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/11-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/11-0.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/11-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/11-1-0.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/11-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/11-1.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/2-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/2-0-0.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/2-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/2-0.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/2-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/2-1-0.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/2-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/2-1.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/22-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/22-0.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/22-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/22-1.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/24-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/24-0.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/24-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/24-1.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/25-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/25-0.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/25-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/25-1.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/26-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/26-0.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/26-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/26-1.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/27-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/27-0.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/27-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/27-1.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/28-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/28-0.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/28-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/28-1.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/29-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/29-0.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/29-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/29-1.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/3-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/3-0-0.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/3-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/3-0.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/3-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/3-1-0.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/3-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/3-1.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/30-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/30-0.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/30-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/30-1.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/31-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/31-0.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/31-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/31-1.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/32-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/32-0.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/32-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/32-1.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/34-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/34-0.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/34-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/34-1.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/35-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/35-0.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/35-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/35-1.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/36-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/36-0.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/36-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/36-1.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/4-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/4-0-0.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/4-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/4-0.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/4-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/4-1-0.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/4-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/4-1.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/5-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/5-0-0.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/5-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/5-0.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/5-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/5-1-0.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/5-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/5-1.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/6-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/6-0-0.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/6-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/6-0.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/6-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/6-1-0.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/6-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/6-1.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/7-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/7-0-0.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/7-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/7-0.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/7-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/7-1-0.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/7-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/7-1.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/8-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/8-0-0.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/8-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/8-0.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/8-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/8-1-0.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/8-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/8-1.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/9-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/9-0.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/9-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/9-1.gif -------------------------------------------------------------------------------- /template/kaelthas/images/race/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/race/index.html -------------------------------------------------------------------------------- /template/kaelthas/images/slide1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/slide1.jpg -------------------------------------------------------------------------------- /template/kaelthas/images/wow-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/images/wow-logo.png -------------------------------------------------------------------------------- /template/kaelthas/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/index.html -------------------------------------------------------------------------------- /template/kaelthas/js/bootsnav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/js/bootsnav.js -------------------------------------------------------------------------------- /template/kaelthas/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /template/kaelthas/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/js/bootstrap.min.js -------------------------------------------------------------------------------- /template/kaelthas/js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/js/index.html -------------------------------------------------------------------------------- /template/kaelthas/js/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/js/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /template/kaelthas/js/jquery-3.3.1.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/js/jquery-3.3.1.slim.min.js -------------------------------------------------------------------------------- /template/kaelthas/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/js/popper.min.js -------------------------------------------------------------------------------- /template/kaelthas/tpl/contactus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/tpl/contactus.php -------------------------------------------------------------------------------- /template/kaelthas/tpl/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/tpl/footer.php -------------------------------------------------------------------------------- /template/kaelthas/tpl/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/tpl/header.php -------------------------------------------------------------------------------- /template/kaelthas/tpl/howtoconnect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/tpl/howtoconnect.php -------------------------------------------------------------------------------- /template/kaelthas/tpl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/tpl/index.html -------------------------------------------------------------------------------- /template/kaelthas/tpl/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/tpl/main.php -------------------------------------------------------------------------------- /template/kaelthas/tpl/posts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/tpl/posts.php -------------------------------------------------------------------------------- /template/kaelthas/tpl/rules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/tpl/rules.php -------------------------------------------------------------------------------- /template/kaelthas/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/kaelthas/video.mp4 -------------------------------------------------------------------------------- /template/languages/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/languages/index.html -------------------------------------------------------------------------------- /template/languages/persian/fonts/Vazir-Light-FD.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/languages/persian/fonts/Vazir-Light-FD.eot -------------------------------------------------------------------------------- /template/languages/persian/fonts/Vazir-Light-FD.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/languages/persian/fonts/Vazir-Light-FD.ttf -------------------------------------------------------------------------------- /template/languages/persian/fonts/Vazir-Light-FD.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/languages/persian/fonts/Vazir-Light-FD.woff -------------------------------------------------------------------------------- /template/languages/persian/fonts/Vazir-Light-FD.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/languages/persian/fonts/Vazir-Light-FD.woff2 -------------------------------------------------------------------------------- /template/languages/persian/fonts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/languages/persian/fonts/index.html -------------------------------------------------------------------------------- /template/languages/persian/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/languages/persian/index.html -------------------------------------------------------------------------------- /template/light/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/.htaccess -------------------------------------------------------------------------------- /template/light/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/css/bootstrap-grid.css -------------------------------------------------------------------------------- /template/light/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /template/light/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /template/light/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /template/light/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/css/bootstrap.css -------------------------------------------------------------------------------- /template/light/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/css/bootstrap.min.css -------------------------------------------------------------------------------- /template/light/css/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/css/index.html -------------------------------------------------------------------------------- /template/light/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/css/style.css -------------------------------------------------------------------------------- /template/light/fonts/OpenSans-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/fonts/OpenSans-Regular.woff -------------------------------------------------------------------------------- /template/light/fonts/OpenSans-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/fonts/OpenSans-Regular.woff2 -------------------------------------------------------------------------------- /template/light/fonts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/fonts/index.html -------------------------------------------------------------------------------- /template/light/images/class/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/class/1.gif -------------------------------------------------------------------------------- /template/light/images/class/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/class/10.gif -------------------------------------------------------------------------------- /template/light/images/class/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/class/11.gif -------------------------------------------------------------------------------- /template/light/images/class/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/class/12.gif -------------------------------------------------------------------------------- /template/light/images/class/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/class/2.gif -------------------------------------------------------------------------------- /template/light/images/class/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/class/3.gif -------------------------------------------------------------------------------- /template/light/images/class/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/class/4.gif -------------------------------------------------------------------------------- /template/light/images/class/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/class/5.gif -------------------------------------------------------------------------------- /template/light/images/class/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/class/6.gif -------------------------------------------------------------------------------- /template/light/images/class/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/class/7.gif -------------------------------------------------------------------------------- /template/light/images/class/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/class/8.gif -------------------------------------------------------------------------------- /template/light/images/class/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/class/9.gif -------------------------------------------------------------------------------- /template/light/images/class/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/class/index.html -------------------------------------------------------------------------------- /template/light/images/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/index.html -------------------------------------------------------------------------------- /template/light/images/race/1-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/1-0-0.gif -------------------------------------------------------------------------------- /template/light/images/race/1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/1-0.gif -------------------------------------------------------------------------------- /template/light/images/race/1-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/1-1-0.gif -------------------------------------------------------------------------------- /template/light/images/race/1-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/1-1.gif -------------------------------------------------------------------------------- /template/light/images/race/10-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/10-0-0.gif -------------------------------------------------------------------------------- /template/light/images/race/10-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/10-0.gif -------------------------------------------------------------------------------- /template/light/images/race/10-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/10-1-0.gif -------------------------------------------------------------------------------- /template/light/images/race/10-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/10-1.gif -------------------------------------------------------------------------------- /template/light/images/race/11-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/11-0-0.gif -------------------------------------------------------------------------------- /template/light/images/race/11-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/11-0.gif -------------------------------------------------------------------------------- /template/light/images/race/11-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/11-1-0.gif -------------------------------------------------------------------------------- /template/light/images/race/11-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/11-1.gif -------------------------------------------------------------------------------- /template/light/images/race/2-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/2-0-0.gif -------------------------------------------------------------------------------- /template/light/images/race/2-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/2-0.gif -------------------------------------------------------------------------------- /template/light/images/race/2-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/2-1-0.gif -------------------------------------------------------------------------------- /template/light/images/race/2-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/2-1.gif -------------------------------------------------------------------------------- /template/light/images/race/22-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/22-0.gif -------------------------------------------------------------------------------- /template/light/images/race/22-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/22-1.gif -------------------------------------------------------------------------------- /template/light/images/race/24-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/24-0.gif -------------------------------------------------------------------------------- /template/light/images/race/24-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/24-1.gif -------------------------------------------------------------------------------- /template/light/images/race/25-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/25-0.gif -------------------------------------------------------------------------------- /template/light/images/race/25-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/25-1.gif -------------------------------------------------------------------------------- /template/light/images/race/26-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/26-0.gif -------------------------------------------------------------------------------- /template/light/images/race/26-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/26-1.gif -------------------------------------------------------------------------------- /template/light/images/race/27-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/27-0.gif -------------------------------------------------------------------------------- /template/light/images/race/27-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/27-1.gif -------------------------------------------------------------------------------- /template/light/images/race/28-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/28-0.gif -------------------------------------------------------------------------------- /template/light/images/race/28-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/28-1.gif -------------------------------------------------------------------------------- /template/light/images/race/29-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/29-0.gif -------------------------------------------------------------------------------- /template/light/images/race/29-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/29-1.gif -------------------------------------------------------------------------------- /template/light/images/race/3-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/3-0-0.gif -------------------------------------------------------------------------------- /template/light/images/race/3-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/3-0.gif -------------------------------------------------------------------------------- /template/light/images/race/3-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/3-1-0.gif -------------------------------------------------------------------------------- /template/light/images/race/3-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/3-1.gif -------------------------------------------------------------------------------- /template/light/images/race/30-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/30-0.gif -------------------------------------------------------------------------------- /template/light/images/race/30-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/30-1.gif -------------------------------------------------------------------------------- /template/light/images/race/31-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/31-0.gif -------------------------------------------------------------------------------- /template/light/images/race/31-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/31-1.gif -------------------------------------------------------------------------------- /template/light/images/race/32-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/32-0.gif -------------------------------------------------------------------------------- /template/light/images/race/32-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/32-1.gif -------------------------------------------------------------------------------- /template/light/images/race/34-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/34-0.gif -------------------------------------------------------------------------------- /template/light/images/race/34-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/34-1.gif -------------------------------------------------------------------------------- /template/light/images/race/35-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/35-0.gif -------------------------------------------------------------------------------- /template/light/images/race/35-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/35-1.gif -------------------------------------------------------------------------------- /template/light/images/race/36-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/36-0.gif -------------------------------------------------------------------------------- /template/light/images/race/36-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/36-1.gif -------------------------------------------------------------------------------- /template/light/images/race/4-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/4-0-0.gif -------------------------------------------------------------------------------- /template/light/images/race/4-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/4-0.gif -------------------------------------------------------------------------------- /template/light/images/race/4-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/4-1-0.gif -------------------------------------------------------------------------------- /template/light/images/race/4-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/4-1.gif -------------------------------------------------------------------------------- /template/light/images/race/5-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/5-0-0.gif -------------------------------------------------------------------------------- /template/light/images/race/5-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/5-0.gif -------------------------------------------------------------------------------- /template/light/images/race/5-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/5-1-0.gif -------------------------------------------------------------------------------- /template/light/images/race/5-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/5-1.gif -------------------------------------------------------------------------------- /template/light/images/race/6-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/6-0-0.gif -------------------------------------------------------------------------------- /template/light/images/race/6-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/6-0.gif -------------------------------------------------------------------------------- /template/light/images/race/6-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/6-1-0.gif -------------------------------------------------------------------------------- /template/light/images/race/6-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/6-1.gif -------------------------------------------------------------------------------- /template/light/images/race/7-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/7-0-0.gif -------------------------------------------------------------------------------- /template/light/images/race/7-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/7-0.gif -------------------------------------------------------------------------------- /template/light/images/race/7-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/7-1-0.gif -------------------------------------------------------------------------------- /template/light/images/race/7-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/7-1.gif -------------------------------------------------------------------------------- /template/light/images/race/8-0-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/8-0-0.gif -------------------------------------------------------------------------------- /template/light/images/race/8-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/8-0.gif -------------------------------------------------------------------------------- /template/light/images/race/8-1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/8-1-0.gif -------------------------------------------------------------------------------- /template/light/images/race/8-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/8-1.gif -------------------------------------------------------------------------------- /template/light/images/race/9-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/9-0.gif -------------------------------------------------------------------------------- /template/light/images/race/9-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/9-1.gif -------------------------------------------------------------------------------- /template/light/images/race/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/race/index.html -------------------------------------------------------------------------------- /template/light/images/wow-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/images/wow-logo.png -------------------------------------------------------------------------------- /template/light/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/index.html -------------------------------------------------------------------------------- /template/light/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /template/light/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/js/bootstrap.min.js -------------------------------------------------------------------------------- /template/light/js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/js/index.html -------------------------------------------------------------------------------- /template/light/js/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/js/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /template/light/js/jquery-3.3.1.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/js/jquery-3.3.1.slim.min.js -------------------------------------------------------------------------------- /template/light/js/jquery.smartWizard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/js/jquery.smartWizard.js -------------------------------------------------------------------------------- /template/light/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/js/popper.min.js -------------------------------------------------------------------------------- /template/light/tpl/contactus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/tpl/contactus.php -------------------------------------------------------------------------------- /template/light/tpl/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/tpl/footer.php -------------------------------------------------------------------------------- /template/light/tpl/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/tpl/header.php -------------------------------------------------------------------------------- /template/light/tpl/howtoconnect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/tpl/howtoconnect.php -------------------------------------------------------------------------------- /template/light/tpl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/tpl/index.html -------------------------------------------------------------------------------- /template/light/tpl/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/tpl/main.php -------------------------------------------------------------------------------- /template/light/tpl/rules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/WoWSimpleRegistration/HEAD/template/light/tpl/rules.php --------------------------------------------------------------------------------