import React, {useState} from "react"; import {Link} from "react-router-dom"; import Icon from "../elements/icon"; import {Collapse} from "react-collapse"; export default function HelpPage() { const [firstStepsCollapsed, collapseFirstSteps] = useState(false); const [faqCollapsed, collapseFaq] = useState(false); const [aboutCollapsed, collapseAbout] = useState(false); return ( <>

WebBase Help & Information

  1. Home
  2. Help

WebBase is a php framework to simplify user management, pages and routing. It can easily be modified and extended by writing document classes and the database can be accessed through the available abstracted scheme. It also includes a REST API with access control, parameter type checking and more.

First Steps

  1. Customize website settings
  2. Manage users and groups on this page
  3. Create routes for your website
  4. For dynamic pages:
    1. Create a document class in /Core/Documents according to the other classes
    2. Create a view class in /Core/Views for every view you have
  5. For static pages:
    • Create html files in /static

FAQ

Nobody asked questions so far…

About

Project Lead & Main Developer Backend Developer
  • Leon Krause
) }