コード例 #1
0
ファイル: index.php プロジェクト: vigiloproject/vigilo
use Vigilo\Core\Library\HTML\vigiloHTML as HTML;
//Objects
$Config1_configPath = new Path();
$Config1_configID = new ID();
$Library1_vigiloHTML = new HTML();
//Session Verifier
if (isset($_SESSION["s_usr"]) && isset($_SESSION["s_pw"])) {
    header("Location: ../panel/");
    exit;
}
?>
<!DOCTYPE html>
	<html lang="en">
		<head>
		<?php 
$Library1_vigiloHTML->headerDefault("Register", 0, NULL);
?>
		</head>
		<body class="eupopup eupopup-top">
			<div id="wrapper">
				<!--<form role="form" class="form-horizontal" method="post">-->
						<div class="container">
							<div class="row">
								<div id="header">
									<div id="center">
										<h3 class="omb_authTitle">Sign up or <a href="../login/">Login</a></h3>
										<br>
									</div>
								</div>
								<div id="content">
									<div class="omb_login">
コード例 #2
0
ファイル: index.php プロジェクト: vigiloproject/vigilo
    header("Location: ../../panel");
    exit;
}
//Variables
$Library1_Vars1->usr = $_POST["usr"];
$Library1_Vars1->email = $_POST["email"];
$Library1_Vars1->confemail = $_POST["confemail"];
$Library1_Vars1->passwd = $_POST["passwd"];
$Library1_Vars1->confpasswd = $_POST["confpasswd"];
$Library1_Vars1->captchaResponse = $_POST["g-recaptcha-response"];
?>
<!DOCTYPE html>
	<html lang="en-US" prefix="og: http://ogp.me/ns#">
		<head>
			<?php 
$Library1_vigiloHTML->headerDefault("...", 0, NULL);
?>
		</head>
		<body>
			<div id="wrapper">
				<div class="container">
					<div class="row">
						<?php 
//extract data from the post
$Library1_Vars1->fields = array('secret' => urlencode($Config1_configID->captchaKey), 'response' => urlencode($Library1_Vars1->captchaResponse));
foreach ($Library1_Vars1->fields as $key => $value) {
    $Library1_Vars1->fieldsString .= $key . '=' . $value . '&';
}
rtrim($Library1_Vars1->fieldsString, '&');
//connect
$Library1_Vars1->curlHeaders = curl_init();
コード例 #3
0
ファイル: index.php プロジェクト: vigiloproject/vigilo
use Vigilo\Core\Library\HTML\vigiloHTML as HTML;
//Objects
$Config1_configPath = new Path();
$Config1_configID = new ID();
$Library1_vigiloHTML = new HTML();
//Session Verifier
if (isset($_SESSION["s_usr"]) && isset($_SESSION["s_pw"])) {
    header("Location: ../panel/");
    exit;
}
?>
<!DOCTYPE html>
	<html lang="en-US" prefix="og: http://ogp.me/ns#">
		<head>
			<?php 
$Library1_vigiloHTML->headerDefault("Login", 0, NULL);
?>
		</head>
		<body class="eupopup eupopup-top">
			<div id="wrapper">
				<!--<form role="form" class="form-horizontal" method="post">-->
						<div class="container">
							<div class="row">
								<div id="header">
									<div id="center">
										<h3 class="omb_authTitle">Login or <a href="../register/">Sign up</a></h3>
										<br />
									</div>
								</div>
								<div id="content">
									<div class="omb_login">
コード例 #4
0
ファイル: index.php プロジェクト: vigiloproject/vigilo
$Config1_configID = new ID();
//Session Verifier
if (isset($_SESSION["s_usr"]) && isset($_SESSION["s_pw"])) {
    header("Location: ../../../panel/");
    exit;
}
if ($_POST["usr"] == NULL && $_POST["passwd"] == NULL) {
    header("Location: ../../");
    exit;
}
?>
<!DOCTYPE html>
	<html>
		<head>
			<?php 
$Library1_vigiloHTML->headerDefault("Captcha", 0, NULL);
?>
		</head>
		<body>
			<div id="wrapper">
				<div class="container">
					<div class="row">
						<div id="header">
							<div id="center">
								<h1>Captcha confirmation</h1>
							</div>
						</div>
						<div id="content">
							<form name="login_captcha" role="form" action="../" autocomplete="off" method="POST">
								<div id="center">
					                <div class="g-recaptcha" data-sitekey=<?php 
コード例 #5
0
ファイル: index.php プロジェクト: vigiloproject/vigilo
use Vigilo\Core\Config\Session;
//Used Libraries
require_once "../../core/config/pathConfig.php";
require "../../core/library/vigiloHTML.php";
//Used Namespaces
use Vigilo\Core\Config\Path\configPath as Path;
use Vigilo\Core\Library\HTML\vigiloHTML as HTML;
//Objects
$Config1_configPath = new Path();
$Library1_vigiloHTML = new HTML();
?>
<!DOCTYPE html>
	<html lang="en-US" prefix="og: http://ogp.me/ns#">
		<head>
			<?php 
$Library1_vigiloHTML->headerDefault("Cookies Law", 0, NULL);
?>
		</head>
		<body class="eupopup eupopup-top">
			<div id="wrapper"><br>
				<div id="center">
						<div class="container">
							<div class="row">
								<div id="header">
									<h2>
										Cookies Law
									</h2>
								</div>
								<div id="content">
									<pre style="white-space:pre-wrap; word-break: normal;">
What Are Cookies
コード例 #6
0
ファイル: index.php プロジェクト: vigiloproject/vigilo
use Vigilo\Core\Config\Path\configPath as Path;
use Vigilo\Core\Library\HTML\vigiloHTML as HTML;
//Objects
$Config1_configPath = new Path();
$Library1_vigiloHTML = new HTML();
//Session Verifier
if (!isset($_SESSION["s_usr"]) || !isset($_SESSION["s_pw"])) {
    header("Location: ../login/");
    exit;
}
?>
<!DOCTYPE html>
	<html lang="en-US" prefix="og: http://ogp.me/ns#">
		<head>
		<?php 
$Library1_vigiloHTML->headerDefault("Mobile", 0, NULL);
?>
		</head>
		<body>
			<div id="wrapper">
				<div class="container">
					<div class="row">
						<div id="header">
							<div id="center">
								<h1>Mobile Incompatible</h1>
								<br>
							</div>
						</div>
					</div>
					<div id="content">
						<div id="center">
コード例 #7
0
ファイル: index.php プロジェクト: vigiloproject/vigilo
use Vigilo\Core\Library\HTML\vigiloHTML as HTML;
//Objects
$Config1_configPath = new Path();
$Config1_configID = new ID();
$Library1_vigiloHTML = new HTML();
//Session Verifier
if (isset($_SESSION["s_usr"]) && isset($_SESSION["s_pw"])) {
    header("Location: ../../panel/");
    exit;
}
?>
<!DOCTYPE html>
  <html lang="en-US" prefix="og: http://ogp.me/ns#">
    <head>
      <?php 
$Library1_vigiloHTML->headerDefault("Forgot", 0, NULL);
?>
	   </head>
	   <body class="eupopup eupopup-top">
	     <div id="wrapper">
          <form class="form-horizontal" method="POST">
            <div class="container">
              <div class="row">
                <div id="header">
	                 <div id="center"><h1>Forgot your password?</h1><br></div>
                </div>
                <div id="content">
                    <!-- Form Name -->
                    <!-- Text input-->
                  <div class="form-group">
                    <label class="col-md-4 control-label" for="textinput"></label>  
コード例 #8
0
ファイル: index.php プロジェクト: vigiloproject/vigilo
//Objects
$Config1_configDatabase = new Database();
$Config1_configPath = new Path();
$Library1_vigiloHTML = new HTML();
$Library1_Vars1 = new Variables();
//Session Verifier
if (!isset($_SESSION["s_usr"]) || !isset($_SESSION["s_pw"])) {
    header("Location: ../login/");
    exit;
}
?>
<!DOCTYPE html>
	<html lang="en-US" prefix="og: http://ogp.me/ns#">
		<head>
			<?php 
$Library1_vigiloHTML->headerDefault("Panel", 0, NULL);
?>
			<script src="//oss.maxcdn.com/jquery.terminal/0.8.8/jquery.terminal-min.js"></script>
	      	<script src="//oss.maxcdn.com/jquery.terminal/0.8.8/jquery.terminal-src.js"></script>
	      	<link rel="stylesheet" type="text/css" href="//oss.maxcdn.com/jquery.terminal/0.8.8/jquery.terminal.css">
	      	<link rel="stylesheet" type="text/css" href="//oss.maxcdn.com/jquery.terminal/0.8.8/jquery.terminal.min.css">
			<script type="text/javascript" src="assets/js/boot.js"></script>
	      	<script type="text/javascript" src="assets/js/menu.js"></script>
	      	<script type="text/javascript" src="assets/js/calculator.js"></script>
	      	<script type="text/javascript" src="assets/js/console.php"></script>
	      	<script type="text/javascript" src="assets/js/main.js"></script>
	      	<script type="text/javascript" src="assets/js/mobile.js"></script>
	      	<script type="text/javascript" src="assets/js/fullscreen.js"></script>
	      	<link rel="stylesheet" type="text/css" href="assets/css/main.css">
		</head>
		<body>
コード例 #9
0
ファイル: index.php プロジェクト: vigiloproject/vigilo
 */
//Session
require "../../core/config/sessionConfig.php";
use Vigilo\Core\Config\Session;
//Used Libraries
require "../../core/library/vigiloHTML.php";
//Used Namespaces
use Vigilo\Core\Library\HTML\vigiloHTML as HTML;
//Objects
$Library1_vigiloHTML = new HTML();
?>
<!DOCTYPE html>
	<html lang="en-US" prefix="og: http://ogp.me/ns#">
		<head>
			<?php 
$Library1_vigiloHTML->headerDefault("Terms", 0, NULL);
?>
		</head>
		<body class="eupopup eupopup-top">
			<div id="wrapper"><br>
				<div id="center">
					<div class="container">
						<div class="row">
							<div id="header">
								<h2>Web Site Terms and Conditions of Use</h2>
							</div>
							<div id="content">
								<h3>1. Terms</h3>
								<p>By accessing this web site, you are agreeing to be bound by these web site Terms and Conditions of Use, all applicable laws and regulations, and agree that you are responsible for compliance with any applicable local laws. If you do not agree with any of these terms, you are prohibited from using or accessing this site. The materials contained in this web site are protected by applicable copyright law for "VigiloProject" Copyright.</p>
								<h3>2. Use License</h3>
								<ol type="a">
コード例 #10
0
ファイル: index.php プロジェクト: vigiloproject/vigilo
$Library1_vigiloHTML = new HTML();
?>

<?php 
//Session verifier
if (isset($_SESSION["s_usr"]) && isset($_SESSION["s_pw"])) {
    header("Location: " . $Config1_configPath->playRemotepath . "/panel");
    exit;
}
?>

<!DOCTYPE html>
	<html lang="en-US" prefix="og: http://ogp.me/ns#">
		<head>
		  <?php 
$Library1_vigiloHTML->headerDefault("Home", 0, NULL);
?>
      <script src="//cdnjs.cloudflare.com/ajax/libs/typed.js/1.1.1/typed.min.js"></script>
      <script src="assets/js/typed-js/typed.js"></script>
      <script type="text/javascript" src="resources/js/type.js"></script>
      <link rel="stylesheet" type="text/css" href="resources/css/type.css">
		</head>
		<body class="eupopup eupopup-top">
		<nav class="navbar navbar-default">
		<div class="container-fluid">
      <div class="container">
        <!-- Brand and toggle get grouped for better mobile display -->
        <div class="navbar-header">
          <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapse-2">
            <span class="sr-only">Toggle navigation</span>
            <span class="icon-bar"></span>
コード例 #11
0
ファイル: index.php プロジェクト: vigiloproject/vigilo
use Vigilo\Core\Config\ID\configID as ID;
use Vigilo\Core\Library\HTML\vigiloHTML as HTML;
//Objects
$Config1_configPath = new Path();
$Library1_vigiloHTML = new HTML();
//Session Verifier
if (isset($_SESSION["s_usr"]) && isset($_SESSION["s_pw"])) {
    header("Location: panel/");
    exit;
}
?>
<!DOCTYPE html>
	<html lang="en-US" prefix="og: http://ogp.me/ns#">
		<head>
			<?php 
$Library1_vigiloHTML->headerDefault("Page Redirection", 0, "/login");
?>
		</head>
		<body>
			<div id="wrapper">
				<div class="container">
					<div class="row">
						<div id="header">
							<div id="center">
								<h1>Page Redirection</h1>
								<br>
							</div>
						</div>
					</div>
					<div id="content">
						<div id="center">