Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Development to master #20

Merged
merged 3 commits into from
May 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ You may also have to authorize Laravel to write to the storage directory
sudo chown -R www-data:www-data storage/
```

Last, you need to setup roles and admins to start using the portal and see it work. Visit the URL of the backend with the path **/install**. This will install these things for you. You will find your admin credentials generated in the Laravel log file. You may want to disable this endpoint after the initial install to prevent this install endpoint from being used again if you are planning on deploying to a production environment in the future. This is easily done by switching ENV variable **INSTALL_PATH_ENABLED** to 0, or false. You may need to run the following command if Laravel caching is on.
Last, you need to setup emailers to start using the portal and see it work. Visit the URL of the backend with the path **/install-emailer**. This will install these things for you.

```bash
php artisan config:clear
Expand Down
12 changes: 11 additions & 1 deletion resources/views/emails/admin_alert_email.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
display: inline-block;
}
ul li a {
color: #FF473E;;
color: #FF473E;
}
ul li span {
display: block;
Expand All @@ -106,6 +106,7 @@
margin: 5px 0;
}
#content-footer {
width: 100%;
text-align: center;
}
#content-footer label {
Expand All @@ -114,6 +115,15 @@
margin-top: 30px;
text-align: center;
}
a,
a:hover,
a:link,
a:active,
a:visited {
color: #FF473E;
font-size: 12px;
text-decoration: none;
}
#button-link {
display: inline-block;
margin: auto;
Expand Down
12 changes: 11 additions & 1 deletion resources/views/emails/confirm_email.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
display: inline-block;
}
ul li a {
color: #FF473E;;
color: #FF473E;
}
ul li span {
display: block;
Expand All @@ -106,6 +106,7 @@
margin: 5px 0;
}
#content-footer {
width: 100%;
text-align: center;
}
#content-footer label {
Expand All @@ -114,6 +115,15 @@
margin-top: 30px;
text-align: center;
}
a,
a:hover,
a:link,
a:active,
a:visited {
color: #FF473E;
font-size: 12px;
text-decoration: none;
}
#button-link {
display: inline-block;
margin: auto;
Expand Down
12 changes: 11 additions & 1 deletion resources/views/emails/contact_us.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
display: inline-block;
}
ul li a {
color: #FF473E;;
color: #FF473E;
}
ul li span {
display: block;
Expand All @@ -106,6 +106,7 @@
margin: 5px 0;
}
#content-footer {
width: 100%;
text-align: center;
}
#content-footer label {
Expand All @@ -114,6 +115,15 @@
margin-top: 30px;
text-align: center;
}
a,
a:hover,
a:link,
a:active,
a:visited {
color: #FF473E;
font-size: 12px;
text-decoration: none;
}
#button-link {
display: inline-block;
margin: auto;
Expand Down
12 changes: 11 additions & 1 deletion resources/views/emails/invitation.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
display: inline-block;
}
ul li a {
color: #FF473E;;
color: #FF473E;
}
ul li span {
display: block;
Expand All @@ -106,6 +106,7 @@
margin: 5px 0;
}
#content-footer {
width: 100%;
text-align: center;
}
#content-footer label {
Expand All @@ -114,6 +115,15 @@
margin-top: 30px;
text-align: center;
}
a,
a:hover,
a:link,
a:active,
a:visited {
color: #FF473E;
font-size: 12px;
text-decoration: none;
}
#button-link {
display: inline-block;
margin: auto;
Expand Down
12 changes: 11 additions & 1 deletion resources/views/emails/kyc_approved.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
display: inline-block;
}
ul li a {
color: #FF473E;;
color: #FF473E;
}
ul li span {
display: block;
Expand All @@ -106,6 +106,7 @@
margin: 5px 0;
}
#content-footer {
width: 100%;
text-align: center;
}
#content-footer label {
Expand All @@ -114,6 +115,15 @@
margin-top: 30px;
text-align: center;
}
a,
a:hover,
a:link,
a:active,
a:visited {
color: #FF473E;
font-size: 12px;
text-decoration: none;
}
#button-link {
display: inline-block;
margin: auto;
Expand Down
12 changes: 11 additions & 1 deletion resources/views/emails/kyc_denied.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
display: inline-block;
}
ul li a {
color: #FF473E;;
color: #FF473E;
}
ul li span {
display: block;
Expand All @@ -106,6 +106,7 @@
margin: 5px 0;
}
#content-footer {
width: 100%;
text-align: center;
}
#content-footer label {
Expand All @@ -114,6 +115,15 @@
margin-top: 30px;
text-align: center;
}
a,
a:hover,
a:link,
a:active,
a:visited {
color: #FF473E;
font-size: 12px;
text-decoration: none;
}
#button-link {
display: inline-block;
margin: auto;
Expand Down
12 changes: 11 additions & 1 deletion resources/views/emails/reset_password.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
display: inline-block;
}
ul li a {
color: #FF473E;;
color: #FF473E;
}
ul li span {
display: block;
Expand All @@ -106,6 +106,7 @@
margin: 5px 0;
}
#content-footer {
width: 100%;
text-align: center;
}
#content-footer label {
Expand All @@ -114,6 +115,15 @@
margin-top: 30px;
text-align: center;
}
a,
a:hover,
a:link,
a:active,
a:visited {
color: #FF473E;
font-size: 12px;
text-decoration: none;
}
#button-link {
display: inline-block;
margin: auto;
Expand Down
12 changes: 11 additions & 1 deletion resources/views/emails/two_fa.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
display: inline-block;
}
ul li a {
color: #FF473E;;
color: #FF473E;
}
ul li span {
display: block;
Expand All @@ -106,6 +106,7 @@
margin: 5px 0;
}
#content-footer {
width: 100%;
text-align: center;
}
#content-footer label {
Expand All @@ -114,6 +115,15 @@
margin-top: 30px;
text-align: center;
}
a,
a:hover,
a:link,
a:active,
a:visited {
color: #FF473E;
font-size: 12px;
text-decoration: none;
}
#button-link {
display: inline-block;
margin: auto;
Expand Down
12 changes: 11 additions & 1 deletion resources/views/emails/user_alert_email.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
display: inline-block;
}
ul li a {
color: #FF473E;;
color: #FF473E;
}
ul li span {
display: block;
Expand All @@ -106,6 +106,7 @@
margin: 5px 0;
}
#content-footer {
width: 100%;
text-align: center;
}
#content-footer label {
Expand All @@ -114,6 +115,15 @@
margin-top: 30px;
text-align: center;
}
a,
a:hover,
a:link,
a:active,
a:visited {
color: #FF473E;
font-size: 12px;
text-decoration: none;
}
#button-link {
display: inline-block;
margin: auto;
Expand Down
12 changes: 11 additions & 1 deletion resources/views/emails/verify_email.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
display: inline-block;
}
ul li a {
color: #FF473E;;
color: #FF473E;
}
ul li span {
display: block;
Expand All @@ -106,6 +106,7 @@
margin: 5px 0;
}
#content-footer {
width: 100%;
text-align: center;
}
#content-footer label {
Expand All @@ -114,6 +115,15 @@
margin-top: 30px;
text-align: center;
}
a,
a:hover,
a:link,
a:active,
a:visited {
color: #FF473E;
font-size: 12px;
text-decoration: none;
}
#button-link {
display: inline-block;
margin: auto;
Expand Down