This commit is contained in:
Jackson Dou 2022-12-13 22:42:14 +08:00
parent a3b34f5745
commit 2b3178cb4e
4 changed files with 12 additions and 17 deletions

View file

@ -2,8 +2,8 @@
An Open Source Web Hosting Account and Support Management System for MyOwnFreeHost
* Official Site : [uiisc.com](http://uiisc.com "UIISC")
* Author : [Jackson Dou](https://github.com/jksdou "Jackson Dou")
- Official Site : [uiisc.com](http://uiisc.com "UIISC")
- Author : [Jackson Dou](https://github.com/jksdou "Jackson Dou")
## Functions
@ -12,31 +12,29 @@ An Open Source Web Hosting Account and Support Management System for MyOwnFreeHo
- [x] Load default language
- [x] Change language
### ClientArea module
- [x] Account registration
- [x] Account verification
- [x] Account cancellation
- [x] Email verification
- [x] Login / Logout
- [x] Profile modification
- [x] Forget / Reset / Change password
- [x] Login / Logout, Forget / Reset / Change password
- [x] Apply for a web hosting account
- [x] Hosting account deletion / deactivation
- [x] Login to hosting control panel
- [x] Web hosting account deletion / deactivation
- [x] Login to web hosting control panel
### admin module
### AdminArea module
- [x] Verify if a domain is available
- [x] Creation of account hosting from the panel
- [x] Creation of hosting account
- [x] Change password to hosting account
- [x] Deactivate or disable a hosting account
- [x] Activate or enable hosting account
- [x] Verify how many domain and state of the hosting account
- [x] Members management
- [x] Site configuration
- [ ] API configuration
- [x] API configuration
- [x] News management
- [ ] Translation file management
@ -44,21 +42,16 @@ An Open Source Web Hosting Account and Support Management System for MyOwnFreeHo
- [ ] Add/edit/delete posts
## Screenshot
##### <u>Solution Page</u>
>
> ![Solution Page](screenshot/solution.png)
##### <u>Login Page</u>
>
> ![Login Page](screenshot/login.png)
##### <u>Register Page</u>
>
> ![Register Page](screenshot/register.png)

View file

@ -19,3 +19,5 @@ $status_types = array(
'关闭',
'打开'
);
$PageInfo['title'] = 'News List';

View file

@ -19,3 +19,5 @@ if ($id > 0) {
} else {
$data = null;
}
$PageInfo['title'] = 'News Details';

View file

@ -8,8 +8,6 @@ if (!in_array($action, array('list', 'view'))) {
$action = 'list';
}
$PageInfo['title'] = 'News ' . ucfirst($action);
require __DIR__ . '/core/controllers/news/' . $action . '.php';
require __DIR__ . '/core/views/common/header.php';
require __DIR__ . '/core/views/common/navbar.php';