File: api.php

package info (click to toggle)
dtc 0.35.5-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 18,824 kB
  • sloc: php: 50,739; sh: 8,596; makefile: 572; perl: 148; xml: 25
file content (22 lines) | stat: -rw-r--r-- 462 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php

require_once("../shared/autoSQLconfig.php");
// All shared files between DTCadmin and DTCclient
$panel_type="email";
require_once("$dtcshared_path/dtc_lib.php");
require_once("login.php");

////////////////////////////////////
// Create the top banner and menu //
////////////////////////////////////

// $_REQUEST["adm_email_login"]
// $_REQUEST["adm_email_pass"]

if(pass_check_email()){
	echo "Password correct";
}else{
	echo "Invalid password";
}

?>