├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── screenshots ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png ├── 8.png └── 9.png └── sourcebans-web-theme-fluent ├── box_admin_admins_search.tpl ├── box_admin_bans_search.tpl ├── box_admin_comms_search.tpl ├── box_admin_log_search.tpl ├── core ├── admin_tabs.tpl ├── footer.tpl ├── header.tpl ├── navbar.tpl ├── temp.html └── title.tpl ├── images ├── admin │ ├── error.png │ ├── help.png │ └── warning.png ├── favicon.ico ├── info.png └── warning.png ├── mails ├── ban_added.html ├── ban_protest.html ├── ban_submission.html ├── contact_custom.html ├── pass_reset.html └── pass_reset_successful.html ├── page_admin.tpl ├── page_admin_admins_add.tpl ├── page_admin_admins_list.tpl ├── page_admin_bans_add.tpl ├── page_admin_bans_email.tpl ├── page_admin_bans_groups.tpl ├── page_admin_bans_import.tpl ├── page_admin_bans_protests.tpl ├── page_admin_bans_protests_archiv.tpl ├── page_admin_bans_submissions.tpl ├── page_admin_bans_submissions_archiv.tpl ├── page_admin_comms_add.tpl ├── page_admin_edit_admins_details.tpl ├── page_admin_edit_admins_group.tpl ├── page_admin_edit_admins_servers.tpl ├── page_admin_edit_ban.tpl ├── page_admin_edit_comms.tpl ├── page_admin_edit_mod.tpl ├── page_admin_groups_add.tpl ├── page_admin_groups_list.tpl ├── page_admin_mods_add.tpl ├── page_admin_mods_list.tpl ├── page_admin_overrides.tpl ├── page_admin_servers_add.tpl ├── page_admin_servers_adminlist.tpl ├── page_admin_servers_list.tpl ├── page_admin_servers_rcon.tpl ├── page_admin_settings_features.tpl ├── page_admin_settings_logs.tpl ├── page_admin_settings_settings.tpl ├── page_admin_settings_themes.tpl ├── page_bans.tpl ├── page_blockit.tpl ├── page_comms.tpl ├── page_dashboard.tpl ├── page_kickit.tpl ├── page_login.tpl ├── page_lostpassword.tpl ├── page_protestban.tpl ├── page_servers.tpl ├── page_submitban.tpl ├── page_uploadfile.tpl ├── page_youraccount.tpl ├── screenshot.jpg ├── scripts ├── collapse.js ├── initial.js ├── jscolor.min.js ├── nav.js ├── sourcebans.js ├── tab.js └── theme.js ├── style ├── global.css ├── global.css.map ├── global.scss └── scss │ ├── __admin.scss │ ├── __dark.scss │ ├── __fix.scss │ ├── __footer.scss │ ├── __header.scss │ ├── __layout.scss │ ├── __nav.scss │ ├── __old.scss │ └── framework │ ├── _animations.scss │ ├── _buttons.scss │ ├── _error.scss │ ├── _fonts.scss │ ├── _inputs.scss │ ├── _messages.scss │ ├── _popup.scss │ └── _tables.scss ├── theme.conf.php └── updater.tpl /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: # Replace with a single Patreon username 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry 12 | polar: # Replace with a single Polar username 13 | buy_me_a_coffee: # Replace with a single Buy Me a Coffee username 14 | custom: ['https://paypal.me/Rushaway'] 15 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /default -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |  2 | 3 | # Theme Fluent for SourceBans++ (PHP 8 Branch) 4 | Fluent Design Theme Edition is a combination of Fluent Design styles Microsoft, iOS Design, Android Design and Google Design. We have also introduced many interesting features that are unique in standard themes. 5 | 6 | ## 🏷️ Requirements 7 | - [SourceBans++ PHP 8.1 Branch](https://github.com/sbpp/sourcebans-pp/tree/php81) 8 | - PHP 8.2+ 9 | 10 | ## 🧰 Install 11 | 1. Download all files from repository or clone: 12 | ``` 13 | git clone https://github.com/Rushaway/sourcebans-web-theme-fluent.git 14 | ``` 15 | 2. Move **sourcebans-web-theme-fluent** folder to Your Sourcebans -> **themes**; 16 | 3. Go to (Website): AdminCP -> Web Panel -> **Themes**; 17 | 4. Select theme **SourceBans++ Fluent Design Theme Edition**; 18 | 19 | ## 🛠️ Update 20 | Reupload all files from repository. 21 | 22 | ## 🚀 Credits 23 | - [aXenDeveloper](https://github.com/aXenDeveloper) (Author) 24 | - [Hackmastr](https://github.com/Hackmastr) (Update to PHP 8.1) 25 | - [Rushaway](https://github.com/Rushaway) (Maintainer) 26 | 27 | ## 📷 Screenshots 28 |  29 |  30 |  31 |  32 |  33 |  34 |  35 |  36 |  37 | -------------------------------------------------------------------------------- /screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rushaway/sourcebans-web-theme-fluent/5bc99fbe859d646af480708846e9862b358d59b5/screenshots/1.png -------------------------------------------------------------------------------- /screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rushaway/sourcebans-web-theme-fluent/5bc99fbe859d646af480708846e9862b358d59b5/screenshots/2.png -------------------------------------------------------------------------------- /screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rushaway/sourcebans-web-theme-fluent/5bc99fbe859d646af480708846e9862b358d59b5/screenshots/3.png -------------------------------------------------------------------------------- /screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rushaway/sourcebans-web-theme-fluent/5bc99fbe859d646af480708846e9862b358d59b5/screenshots/4.png -------------------------------------------------------------------------------- /screenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rushaway/sourcebans-web-theme-fluent/5bc99fbe859d646af480708846e9862b358d59b5/screenshots/5.png -------------------------------------------------------------------------------- /screenshots/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rushaway/sourcebans-web-theme-fluent/5bc99fbe859d646af480708846e9862b358d59b5/screenshots/6.png -------------------------------------------------------------------------------- /screenshots/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rushaway/sourcebans-web-theme-fluent/5bc99fbe859d646af480708846e9862b358d59b5/screenshots/7.png -------------------------------------------------------------------------------- /screenshots/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rushaway/sourcebans-web-theme-fluent/5bc99fbe859d646af480708846e9862b358d59b5/screenshots/8.png -------------------------------------------------------------------------------- /screenshots/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rushaway/sourcebans-web-theme-fluent/5bc99fbe859d646af480708846e9862b358d59b5/screenshots/9.png -------------------------------------------------------------------------------- /sourcebans-web-theme-fluent/box_admin_admins_search.tpl: -------------------------------------------------------------------------------- 1 |
8 | Advanced Search (Click) 9 | | 10 |
13 |
14 |
158 |
15 |
157 |
16 |
17 |
18 |
21 |
22 |
24 |
25 |
26 |
27 |
28 |
29 |
32 |
33 |
43 |
44 | {if $can_editadmin}
45 |
34 |
36 |
37 |
41 |
42 |
46 |
47 |
48 |
49 |
52 |
53 |
55 |
56 | {/if}
57 |
58 |
59 |
60 |
61 |
64 |
65 |
71 |
72 |
73 |
74 |
75 |
76 |
79 |
80 |
87 |
88 |
89 |
90 |
91 |
92 |
95 |
96 |
102 |
103 |
104 |
105 |
106 |
107 |
110 |
111 |
118 |
119 |
120 |
121 |
122 |
123 |
126 |
127 |
134 |
135 |
136 |
137 |
138 |
139 |
140 |
143 |
144 |
145 |
151 |
152 |
153 |
154 | {sb_button text="Search" onclick="search_admins();" class="ok" id="button button-primary flex:11" submit=false}
155 |
156 | |
159 |
Advanced Search (Click) | 8 |||||||||||||||||
11 |
12 |
58 |
|
59 |