new install.sh script and a folder_structure.md file is now included. Updated folder structure

This commit is contained in:
2021-01-21 22:11:33 +01:00
parent 359e7568c3
commit 719a482c12
16 changed files with 106 additions and 2 deletions

7
fboard/pages/login.php Normal file
View File

@@ -0,0 +1,7 @@
<!DOCTYPE html>
<html>
<body>
<h1>Log in or create new user</h1><br>
<a href="login.php">Log in</a>
<a href="register.php">Register new User</a>
</body></html>

11
fboard/pages/register.php Normal file
View File

@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<body>
<h1>Register new user</h1>
<p>You might want to review the source code of fBoard before you register</p>
<form action="../cgi/register.php">
<input type="text" id="user_name" required>
<input type="password" id="password" required>
<input type="password" id="verify_password" required>
</form>
</body></html>

View File

@@ -0,0 +1,5 @@
<!DOCTYPE html>
<html>
<body>
<h1>Administrate</h1>
</body></html>

View File

@@ -0,0 +1,7 @@
<!DOCTYPE html>
<html>
<body>
<h1>Log in or create new user</h1><br>
<a href="login.php">Log in</a>
<a href="register.php">Register new User</a>
</body></html>

View File

@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<body>
<h1>Register new user</h1>
<p>You might want to review the source code of fBoard before you register</p>
<form action="../cgi/register.php">
<input type="text" id="user_name" required>
<input type="password" id="password" required>
<input type="password" id="verify_password" required>
</form>
</body></html>

View File

View File

View File

@@ -0,0 +1,6 @@
<!DOCTYPE html>
<html>
<body>
<h1>fBoard</h1>
</body>
</html>

8
fboard/user/index.php Normal file
View File

@@ -0,0 +1,8 @@
<!DOCTYPE html>
<html>
<body>
<?php
include "includes/header.php";
?>
</body>
</html>

View File