Added Index and Header pages

This commit is contained in:
ry1015
2014-10-18 16:29:13 -07:00
parent dac3b83402
commit a812142e4d
6 changed files with 37 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
/nbproject/private/

11
header.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
echo <<<_END
<html>
<head>
<title>F8L Online Banking</title>
<link rel='stylesheet' type='text/css' href='style.css'>
</head>
<body>
_END;
?>

9
index.php Normal file
View File

@@ -0,0 +1,9 @@
<?php
require_once 'header.php';
echo <<<_END
</body>
</html>
_END;
?>

View File

@@ -0,0 +1,7 @@
include.path=${php.global.include.path}
php.version=PHP_54
source.encoding=UTF-8
src.dir=.
tags.asp=false
tags.short=false
web.root=.

9
nbproject/project.xml Normal file
View File

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://www.netbeans.org/ns/project/1">
<type>org.netbeans.modules.php.project</type>
<configuration>
<data xmlns="http://www.netbeans.org/ns/php-project/1">
<name>cs157AOnlineBanking</name>
</data>
</configuration>
</project>

0
styles.css Normal file
View File