-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdashboard.php
137 lines (130 loc) · 5.98 KB
/
dashboard.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<?php
// App Name: Custom GPT
// Author: DigiForge
// App version: 1.0
// App url: https://digiforge.in
// Dashboard Template
$page_session = \Config\Services::session(); // starting and storing the user session
?>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<div class="content-header">
<div class="container-fluid">
<div class="row mb-2">
<div class="col-sm-6">
<h1 class="m-0">Hello, <?= $teamdata->fname; ?></h1>
</div><!-- /.col -->
<div class="col-sm-6">
<ol class="breadcrumb float-sm-right">
<li class="breadcrumb-item"><a href="<?= base_url('dashboard'); ?>">Home</a></li>
<li class="breadcrumb-item active">Dashboard</li>
</ol>
</div><!-- /.col -->
</div><!-- /.row -->
</div><!-- /.container-fluid -->
</div>
<!-- /.content-header -->
<!-- Main content -->
<section class="content">
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<!-- Box Comment -->
<div class="card card-widget">
<div class="card-header">
<div class="user-block">
<img class="img-circle" src="<?= base_url('/public/assets/img/logo/customgpt.png'); ?>" alt="Custom Chat GPT Logo">
<span class="username">What is Custom GPT?</span>
<span class="description">Must Read</span>
</div>
<!-- /.user-block -->
</div>
<!-- /.card-header -->
<div class="card-body">
<p>Custom GPT is a micro SaaS powered by OpenAI API that offers customized AI prompts for developers, programmers, digital marketers, and content writers. This platform is designed to eliminate the need for brainstorming use cases for Chat GPT, meaning users don't have to spend time thinking about what to write in order to get solutions.
</p>
</div>
<!-- /.card-body -->
</div>
<!-- /.card -->
</div>
<!-- /.col -->
<div class="col-md-12">
<!-- Box Comment -->
<div class="card card-widget">
<div class="card-header">
<div class="user-block">
<img class="img-circle" src="<?= base_url('/public/assets/img/logo/customgpt.png'); ?>" alt="Custom Chat GPT Logo">
<span class="username">What you can do & What you cannot!</span>
<span class="description">Must Read</span>
</div>
<!-- /.user-block -->
</div>
<!-- /.card-header -->
<div class="card-body">
<!-- post text -->
<p>Please read the usage terms and conditions here to see what you can modify and what you cannot modify: <a href="https://digiforge.in/terms-and-conditions/">Right to Modify, Reuse, Resell and Share</a> and <a href="https://digiforge.in/acceptable-use-policy/">Acceptable usage rights.</a></p>
</div>
<!-- /.card-body -->
</div>
<!-- /.card -->
</div>
<!-- /.col -->
<div class="col-md-6">
<!-- Box Comment -->
<div class="card card-widget">
<div class="card-header">
<div class="user-block">
<img class="img-circle" src="<?= base_url('/public/assets/img/logo/customgpt.png'); ?>" alt="Custom Chat GPT Logo">
<span class="username">You can Modify the Source code!</span>
<span class="description">Must Read</span>
</div>
<!-- /.user-block -->
</div>
<!-- /.card-header -->
<div class="card-body">
<!-- post text -->
<p>At <a href="https://digiforge.in">DigiForge</a>, we firmly believe that the future lies in Low Code or No Code solutions. To that end, we provide developers, startups, and companies/organizations with a range of Micro SaaS Solutions that come with their source code. This allows them to purchase and modify the solutions as per their requirements.</p>
<p>PS. Why not try modifying this SaaS to boost your own productivity?</p>
</div>
<!-- /.card-body -->
</div>
<!-- /.card -->
</div>
<!-- /.col -->
<div class="col-md-6">
<!-- Box Comment -->
<div class="card card-widget">
<div class="card-header">
<div class="user-block">
<img class="img-circle" src="<?= base_url('/public/assets/img/logo/customgpt.png'); ?>" alt="Custom Chat GPT Logo">
<span class="username">Resources Used</span>
<span class="description">Must Read</span>
</div>
<!-- /.user-block -->
</div>
<!-- /.card-header -->
<div class="card-body">
<!-- post text -->
<p>Here are the resources we used to create this Micro SaaS:</p>
<p>
<ul>
<li class="text-dark">Framework - CodeIgniter 4.35</li>
<li class="text-dark">Admin LTE 3 - HTML Template</li>
<li class="text-dark">API - Open AI (Creator of Chat GPT)</li>
</ul>
</p>
</div>
<!-- /.card-body -->
</div>
<!-- /.card -->
</div>
<!-- /.col -->
</div>
<!-- /.row -->
</div>
</section>
<!-- /.content -->
</div>
<!-- /.content-wrapper -->