Initial Commit

This commit is contained in:
2019-11-21 12:25:31 +01:00
commit f4aabcb9b1
13959 changed files with 787761 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title><?php echo __('Standalone Slider Revolution Installation'); ?></title>
<link rel="stylesheet" href="<?php echo base_url(); ?>assets/css/account.css" type="text/css" />
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Open+Sans%3A300italic%2C400italic%2C600italic%2C300%2C400%2C600&subset=latin%2Clatin-ext" />
<link rel="apple-touch-icon" sizes="57x57" href="<?php echo base_url(); ?>assets/images/favicon/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="<?php echo base_url(); ?>assets/images/favicon/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="<?php echo base_url(); ?>assets/images/favicon/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="<?php echo base_url(); ?>assets/images/favicon/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="<?php echo base_url(); ?>assets/images/favicon/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="<?php echo base_url(); ?>assets/images/favicon/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="<?php echo base_url(); ?>assets/images/favicon/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="<?php echo base_url(); ?>assets/images/favicon/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="<?php echo base_url(); ?>assets/images/favicon/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="<?php echo base_url(); ?>assets/images/favicon/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="<?php echo base_url(); ?>assets/images/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="<?php echo base_url(); ?>assets/images/favicon/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="<?php echo base_url(); ?>assets/images/favicon/favicon-16x16.png">
<link rel="manifest" href="<?php echo base_url(); ?>assets/images/favicon/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="<?php echo base_url(); ?>assets/images/favicon/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
</head>
<body>
<div class="panel">
<div class="header">
<img src="<?php echo base_url(); ?>assets/images/logo_small.png" alt="<?php echo __('Slider Revolution'); ?>" />
</div>
<?php echo $view_html; ?>
</div>
</body>
</html>

View File

@@ -0,0 +1,51 @@
<div class="title">
<h1><?php echo __('Login') ?></h1>
</div>
<div class="block">
<?php if ($error) : ?>
<p class="error"><?php echo $error; ?></p>
<?php endif; ?>
<?php echo form_open(site_url('c=account&m=login_action'), array('id' => 'login_form')) ; ?>
<dl>
<dt>
<label for="username"><?php echo __('Username')?></label>
</dt>
<dd>
<?php echo form_input(array('name' => 'username', 'id' => 'username', 'value' => $username, 'class' => 'inputtext right', 'autofocus' => 'autofocus')) ; ?>
</dd>
</dl>
<dl>
<dt>
<label for="password"><?php echo __('Password')?></label>
</dt>
<dd>
<?php echo form_password(array('name' => 'password', 'id' => 'password', 'class' => 'inputtext right')) ; ?>
</dd>
</dl>
<div class="buttons">
<input type="submit" class="hidden" />
<a href="javascript:void(0)" onclick="document.getElementById('login_form').submit(); return false;" class="button right"><?php echo __('Login') ?></a>
<?php if(!RS_DEMO){ ?>
<a href="<?php echo site_url('c=account&m=recover_password'); ?>" class="link"><?php echo __('Forgot password?') ?></a>
<?php } ?>
</div>
<?php if(RS_DEMO){ ?>
<p style="text-align: center"><?php echo __('Demo Username: demo'); ?></p>
<p style="text-align: center"><?php echo __('Demo Password: demo'); ?></p>
<?php } ?>
</form>
</div>
<?php if(RS_DEMO){ ?>
<div style="width: 620px;margin: 50px 0px 0px -110px;" class="required_plugins">
<div style="margin-bottom: 20px"><img src="http://sharedimages.themepunch.tools/server_req.png" alt="required programs" /></div>
<a href="http://codecanyon.net/item/slider-revolution-responsive-jquery-plugin/2580848?ref=themepunch&license=regular&open_purchase_for_item_id=2580848&purchasable=source" style="margin-right:10px"><img src="http://sharedimages.themepunch.tools/buy_jqueryslider.png"></a>
<a href="http://codecanyon.net/item/slider-revolution-jquery-visual-editor-addon/13934907?ref=themepunch&license=regular&open_purchase_for_item_id=13934907&purchasable=source" style="margin-left:10px"><img src="http://sharedimages.themepunch.tools/buy_visualeditor.png"></a>
</div>
<?php } ?>

View File

@@ -0,0 +1,30 @@
<div class="title">
<h1><?php echo __('Recover Password') ?></h1>
</div>
<div class="block">
<?php if ($error) : ?>
<p class="error"><?php echo $error; ?></p>
<?php endif; ?>
<?php echo form_open(site_url('c=account&m=recover_password_action'), array('id' => 'recover_form')) ; ?>
<dl>
<dt>
<label for="email"><?php echo __('Email address')?></label>
</dt>
<dd>
<?php echo form_input(array('name' => 'email', 'id' => 'email', 'value' => $email, 'class' => 'inputtext right')) ; ?>
</dd>
</dl>
<div class="buttons">
<input type="submit" class="hidden" />
<a href="javascript:void(0)" onclick="document.getElementById('recover_form').submit(); return false;" class="button right"><?php echo __('Recover Password') ?></a>
<a href="<?php echo site_url('c=account&m=login'); ?>" class="link"><?php echo __('Login') ?></a>
</div>
</form>
</div>