Before continue make sure when you installed the script you have copied the files from extra/examples/basic-ajax
.
The basic-ajax version allows you add all the functionality of the script into your website using your own design and forms. The script provides just a set of classes and methods for you to do that.
<?php
// Init file
require_once 'app/init.php';
// Check if is already logged
if (Auth::check()) redirect_to(App::url());
?>
<html>
<head>
<!-- CSRF Token -->
<meta name="csrf-token" content="<?php echo csrf_token() ?>">
<!-- JavaScript -->
<script src="<?php echo asset_url('js/vendor/jquery-1.11.1.min.js') ?>"></script>
<script src="<?php echo asset_url('js/vendor/bootstrap.min.js') ?>"></script>
<script src="<?php echo asset_url('js/easylogin.js') ?>"></script>
<script src="<?php echo asset_url('js/main.js') ?>"></script>
<script>
EasyLogin.options = {
ajaxUrl: '<?php echo App::url("ajax.php") ?>',
lang: <?php echo json_encode(trans('main.js')) ?>,
debug: <?php echo Config::get('app.debug')?1:0; ?>,
};
</script>
</head>
<body>
<h3><?php _e('main.login') ?></h3>
<form action="login" class="ajax-form"> <!-- Make sure to add .ajax-form class -->
<?php csrf_input() ?> <!-- Security input -->
<p>
<label for="email"><?php _e('main.email_username') ?></label>
<input type="text" name="email" id="email">
</p>
<p>
<label for="password"><?php _e('main.password') ?></label>
<input type="password" name="password" id="password">
</p>
<p>
<label><input type="checkbox" name="remember" value="1"> <?php _e('main.remember') ?></label>
</p>
<p>
<button type="submit" name="submit"><?php _e('main.login') ?></button>
</p>
<p>
<a href="reminder.php"><?php _e('main.forgot_pass') ?></a> <br>
<a href="activation.php"><?php _e('main.resend_activation') ?></a>
</p>
</form>
<!-- Show social auth -->
<?php if (count(Config::get('auth.providers'))): ?>
<p><?php _e('main.login_with2') ?></p>
<p>
<?php foreach (Config::get('auth.providers', array()) as $key => $provider): ?>
<a href="<?php echo App::url("oauth.php?provider={$key}") ?>"><?php echo $provider ?></a>
<?php endforeach ?>
</p>
<?php endif ?>
</body>
</html>
Source: extra/examples/basic-ajax/login.php
.
<?php
require_once 'app/init.php';
if (Auth::check()) redirect_to(App::url());
?>
<html>
<head>
<!-- CSRF Token -->
<meta name="csrf-token" content="<?php echo csrf_token() ?>">
<!-- JavaScript -->
<script src="<?php echo asset_url('js/vendor/jquery-1.11.1.min.js') ?>"></script>
<script src="<?php echo asset_url('js/vendor/bootstrap.min.js') ?>"></script>
<script src="<?php echo asset_url('js/easylogin.js') ?>"></script>
<script src="<?php echo asset_url('js/main.js') ?>"></script>
<script>
EasyLogin.options = {
ajaxUrl: '<?php echo App::url("ajax.php") ?>',
lang: <?php echo json_encode(trans('main.js')) ?>,
debug: <?php echo Config::get('app.debug')?1:0; ?>,
};
</script>
</head>
<body>
<?php if (Session::has('signup_complete')): Session::deleteFlash(); ?>
<h3><?php _e('main.check_email') ?></h3>
<?php _e('main.activation_check_email') ?>
<?php else: ?>
<h3><?php _e('main.signup') ?></h3>
<form action="signup" class="ajax-form">
<?php if (Config::get('auth.require_username')): ?>
<p>
<label for="signup-username"><?php _e('main.username') ?></label>
<input type="text" name="username" id="signup-username">
</p>
<?php endif ?>
<p>
<label for="signup-email"><?php _e('main.email') ?></label>
<input type="text" name="email" id="signup-email">
</p>
<p>
<label for="signup-pass1"><?php _e('main.password') ?></label>
<input type="password" name="pass1" id="signup-pass1" autocomplete="off" value="">
</p>
<!-- Custom fields required for signup -->
<?php echo UserFields::build('signup') ?>
<!-- Show captcha if enabled -->
<?php if (Config::get('auth.captcha')): ?>
<p>
<?php display_captcha(); ?>
</p>
<?php endif ?>
<p>
<button type="submit" name="submit"><?php _e('main.signup') ?></button>
</p>
</form>
<!-- Show social auth -->
<?php if (count(Config::get('auth.providers'))): ?>
<p><?php _e('main.login_with2') ?></p>
<p>
<?php foreach (Config::get('auth.providers', array()) as $key => $provider): ?>
<a href="<?php echo App::url("oauth.php?provider={$key}") ?>"><?php echo $provider ?></a>
<?php endforeach ?>
</p>
<?php endif ?>
<?php endif ?>
</body>
</html>
Source: extra/examples/basic-ajax/signup.php
.