Added Index and Header pages
This commit is contained in:
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
/nbproject/private/
|
||||
11
header.php
Normal file
11
header.php
Normal 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
9
index.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
require_once 'header.php';
|
||||
|
||||
|
||||
echo <<<_END
|
||||
</body>
|
||||
</html>
|
||||
_END;
|
||||
?>
|
||||
7
nbproject/project.properties
Normal file
7
nbproject/project.properties
Normal 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
9
nbproject/project.xml
Normal 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
0
styles.css
Normal file
Reference in New Issue
Block a user