- If company name is not supplied at the time of login, App crashes. In this case either show an error or don’t let him press Login.
- If company name is incorrect I’m getting
Res failed
error. This won’t make any sense to the user. Please show error that is received in the api. - On each screen load, A static content is displayed before displaying response from API. And it causes flickers. Show a loader while api call is in progress.
- From navigation, In Support Centre > on click of
submit ticket
a form should be opened. That has same fields has Get quote button. Shreyansh has shared the api for support. - On Events listing page.Static string
time time
is written, Replace that with actual timestamp. - On Event details page, gray coloured details section. These data is not displayed: Date, Time, Event Category.
- On all page, Make
Read More
button a little bigger, Currently these are VERY small. - Event Details Page >
Google Calender
button is not working
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd /home/forge/project | |
$FORGE_PHP artisan down | |
git pull origin master | |
$FORGE_COMPOSER install --no-interaction --prefer-dist --optimize-autoloader | |
( flock -w 10 9 || exit 1 | |
echo 'Restarting FPM...'; sudo -S service $FORGE_PHP_FPM reload ) 9>/tmp/fpmlock |
- Make use of Bootstrap classes Don’t create new custom classes if you can achieve something using Bootstrap class. Try to extract styling that is provided by bootstrap from custom class.
Eg: For example this custom class is not required at all. (eg: .service)
.service {
font-weight: bold;
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# FORGE CONFIG (DO NOT REMOVE!) | |
include forge-conf/{{ SITE }}/before/*; | |
server { | |
listen {{ PORT }}; | |
listen {{ PORT_V6 }}; | |
server_name {{ DOMAINS }}; | |
server_tokens off; | |
root {{ PATH }}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge" /> | |
<title>Static Template</title> | |
<style> | |
body { | |
padding: 0; |
OlderNewer