Skip to content

Commit

Permalink
V1.1 Release
Browse files Browse the repository at this point in the history
-Improved UI in some pages
-Bug Fixes
-Improved Editor Integration
-Added 'VP CUSTOMIZATION' section
-Datatable for Tutorial List with 'View' action
  • Loading branch information
dimitrist19 committed Nov 15, 2020
1 parent 99c6bde commit c1e4504
Show file tree
Hide file tree
Showing 38 changed files with 18,229 additions and 662 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
<h1>Tutorials Site CMS</h1>
Through 'Tutorials Site' CMS you can easily create a video tutorial site for your hosting business!

<h3>The V1 (Beta) of this CMS includes:</h3>
<h3>The V1.1 of this CMS includes:</h3>

<b>ADMIN INTERFACE:</b>
- One Admin Account (multiple users might be added in a future version)
- Add/Edit/Remove Tutorials (title, embed code, description, further explanation &/or how to)
- Manage your logo, favicon, host name, support url, knowledgebase url and home url
- VP Customization (Changes tutorial link to your preferred url)

<b>USER INTERFACE:</b>
- Default Template (you may code your own using html & css)
Expand Down
17 changes: 17 additions & 0 deletions SECURITY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Security Policy

## Supported Versions

Use this section to tell people about which versions of your project are
currently being supported with security updates.

| Version | Supported |
| ------- | ------------------ |
| 1.1 | :white_check_mark: |
| 1.0 (BETA) | :x: |

## Reporting a Vulnerability

To report a vulnerability please open an issue explaining it.

It will be investigated and attempt to fix if possible. ETA is not guaranteed and depends from many factors (e.g. the size of the issue).
12 changes: 7 additions & 5 deletions admin/about.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
exit();
}
include '../config.php';
$result1 = mysqli_query($conn, "SELECT * FROM users WHERE id={$_SESSION['id']}");
$row1 = mysqli_fetch_array($result1);
?>
<!DOCTYPE html>
<html lang="en">
Expand All @@ -20,7 +22,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="x-ua-compatible" content="ie=edge">

<title>Tutorials Site V1 | About</title>
<title>Tutorials Site CMS | About</title>
<link rel="icon" href="https://icon-library.com/images/tutorial-icon-png/tutorial-icon-png-19.jpg">

<!-- Font Awesome Icons -->
Expand Down Expand Up @@ -73,8 +75,7 @@
<a href="index.php" class="brand-link">
<img src="https://icon-library.com/images/tutorial-icon-png/tutorial-icon-png-19.jpg" alt="Icon" class="brand-image"
style="opacity: .8">
<span class="brand-text font-weight-light"><b>Tutorials Site</b> V1</span>
<span class="right badge badge-info">Beta</span>
<span class="brand-text font-weight-light"><b>Tutorials Site</b> CMS</span>
</a>

<!-- Sidebar -->
Expand All @@ -85,7 +86,7 @@
<img src="build/img/avatar.png" class="img-circle elevation-2" alt="User Image">
</div>
<div class="info">
<a href="profile.php" class="d-block">System Admin</a>
<a href="profile.php" class="d-block"><?= $row1['fullname']?></a>
</div>
</div>

Expand Down Expand Up @@ -145,7 +146,7 @@
<i class="nav-icon fas fa-palette"></i>
<p>
VP Customization
<span class="right badge badge-danger">N/A</span>
<span class="right badge badge-success">NEW</span>
</p>
</a>
</li>
Expand Down Expand Up @@ -223,6 +224,7 @@
<p><b>The copyright notices must be included with all pages of the script.</b> If you wish to remove them please open a support ticket on my <a href="https://discord.gg/wwJbMup">discord server</a>
<div class="dropdown-divider"></div>
<h3>About the script</h3>
<p>Version: <code>V1.1</code></p>
<p>Through 'Tutorials Site' CMS you can easily create a video tutorial site for your hosting business</p>
<font size='small' color='grey'>*The script includes tools especially for web hosting video tutorial site but it may be used from non web hosting providers/sites.</font>
<br>
Expand Down
25 changes: 19 additions & 6 deletions admin/addnew.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@

exit();
}
$result1 = mysqli_query($conn, "SELECT * FROM users WHERE id={$_SESSION['id']}");
$row1 = mysqli_fetch_array($result1);
?>
<!DOCTYPE html>
<html lang="en">
Expand All @@ -26,7 +28,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="x-ua-compatible" content="ie=edge">

<title>Tutorials Site V1 | Add Tutorial</title>
<title>Tutorials Site CMS | Add Tutorial</title>
<link rel="icon" href="https://icon-library.com/images/tutorial-icon-png/tutorial-icon-png-19.jpg">

<!-- Font Awesome Icons -->
Expand Down Expand Up @@ -80,8 +82,7 @@
<a href="index.php" class="brand-link">
<img src="https://icon-library.com/images/tutorial-icon-png/tutorial-icon-png-19.jpg" alt="Icon" class="brand-image"
style="opacity: .8">
<span class="brand-text font-weight-light"><b>Tutorials Site</b> V1</span>
<span class="right badge badge-info">Beta</span>
<span class="brand-text font-weight-light"><b>Tutorials Site</b> CMS</span>
</a>

<!-- Sidebar -->
Expand All @@ -92,7 +93,7 @@
<img src="build/img/avatar.png" class="img-circle elevation-2" alt="User Image">
</div>
<div class="info">
<a href="profile.php" class="d-block">System Admin</a>
<a href="profile.php" class="d-block"><?= $row1['fullname']?></a>
</div>
</div>

Expand Down Expand Up @@ -152,7 +153,7 @@
<i class="nav-icon fas fa-palette"></i>
<p>
VP Customization
<span class="right badge badge-danger">N/A</span>
<span class="right badge badge-success">NEW</span>
</p>
</a>
</li>
Expand Down Expand Up @@ -250,7 +251,9 @@
</div>
<div class="form-group">
<label for="body">How To / Further Explanation</label>
<textarea id="summernote" name="body"></textarea>
<div style="background-color: #ffffff;">
<textarea id="summernote" name="body"></textarea>
</div>
</div>
</div>
<!-- /.card-body -->
Expand Down Expand Up @@ -299,6 +302,16 @@
placeholder: 'Here you can explain the tutorial further or make a How-To sections. You can include images, text & more...',
tabsize: 2,
height: 200,
toolbar: [
['style', ['style']],
['font', ['bold', 'italic', 'underline', 'clear']],
['fontname', ['fontname']],
['color', ['color']],
['para', ['ul', 'ol', 'paragraph']],
['table', ['table']],
['insert', ['link', 'picture', 'video']],
['view', ['codeview', 'help', 'undo', 'redo']],
],
});
</script>
</body>
Expand Down
Loading

0 comments on commit c1e4504

Please sign in to comment.