-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathconfig.php
31 lines (31 loc) · 908 Bytes
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
define('APIKEY', 'AIzaSyB5zY2fq6YRSMxF7HwGb8rEQ8VVRxiO6ps');
define('GJ_CODE', 'HK');
define('SITE_NAME', 'you2b1eclub');
define('TITLENAME', 'you2beclub');
define('EN2DEKEY', '32123wwerwertgfdgds');
define('EMAIL', '[email protected]');
define('NAME', 'admin');
define('PASSWORD', 'admin');
define('LOGINHTML', '<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Login</title>
<link rel="stylesheet" type="text/css" href="Login.css"/>
</head>
<body>
<center>
<p id="login">
<h1>怫</h1>
<form method="post" style="margin:0px auto;">
<input type="text" required="required" placeholder="̞" name="name"></input>
<br>
<input type="password" required="required" placeholder="ÃÜÂë" name="password"></input>
<button class="but" type="submit">怬</button>
</form>
</p>
</center>
</body>
</html>');
?>