-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
executable file
·53 lines (45 loc) · 1.29 KB
/
index.php
File metadata and controls
executable file
·53 lines (45 loc) · 1.29 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php
// //allow the config
// define(__CONFIG__, true);
// //require the config
// require_once "inc/config.php";
?>
<?DOCTYPE-html>
<html lang="en">
<head>
<meta charset ="utf-8" />
<meta http-quiv ="X-UA-Compatible" content="IE=edge" />
<meta name ="viewport" content="width=device-width, initial-scale=1" />
<meta name ="robots" content="follow">
<title>Pax Login</title>
<base href="/" />
<!-- UIkit CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/uikit/3.0.0-beta.40/css/uikit.min.css" />
</head>
<body>
<div class="uk-section uk-container">
<?php
echo "Hello World today is: " ;
echo date("d m Y");
?>
<p> <h2>TODO List</h2>
<P><del>Add First name</del></P>
<P><del>Add Last name</del></P>
<p>Email verification</p>
<p>Change Email</p>
<p>Reset Password</p>
<P>Character Generation</P>
<P>Character Sheet</P>
<p>
<p uk-margin>
<button class="uk-button uk-button-primary uk-button-small">
<a style="color:cyan" href="/login.php">Login</a>
</button>
<button class="uk-button uk-button-default uk-button-small">
<a href="/register.php">Registration</a>
</button>
</p>
</div>
<?php require_once "inc/footer.php"; ?>
</body>
</html>