new install.sh script and a folder_structure.md file is now included. Updated folder structure
This commit is contained in:
7
fboard/pages/login.php
Normal file
7
fboard/pages/login.php
Normal 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
11
fboard/pages/register.php
Normal 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>
|
||||
5
fboard/user/admin/index.php
Normal file
5
fboard/user/admin/index.php
Normal file
@@ -0,0 +1,5 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<body>
|
||||
<h1>Administrate</h1>
|
||||
</body></html>
|
||||
7
fboard/user/etc/login.php
Normal file
7
fboard/user/etc/login.php
Normal 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/user/etc/register.php
Normal file
11
fboard/user/etc/register.php
Normal 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>
|
||||
0
fboard/user/includes/boardlist.php
Normal file
0
fboard/user/includes/boardlist.php
Normal file
0
fboard/user/includes/footer.php
Normal file
0
fboard/user/includes/footer.php
Normal file
6
fboard/user/includes/header.php
Normal file
6
fboard/user/includes/header.php
Normal file
@@ -0,0 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<body>
|
||||
<h1>fBoard</h1>
|
||||
</body>
|
||||
</html>
|
||||
8
fboard/user/index.php
Normal file
8
fboard/user/index.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<body>
|
||||
<?php
|
||||
include "includes/header.php";
|
||||
?>
|
||||
</body>
|
||||
</html>
|
||||
0
fboard/user/styling/style.css
Normal file
0
fboard/user/styling/style.css
Normal file
Reference in New Issue
Block a user