Compare commits
6 Commits
efcc72c50e
...
b6643d012f
Author | SHA1 | Date |
---|---|---|
Jaya Surya P | b6643d012f | |
NitinVangipuram | 18c3d9b046 | |
NitinVangipuram | 32fb8c5d6a | |
Jaya Surya P | 18f509e6a4 | |
NitinVangipuram | 93b716ec90 | |
NitinVangipuram | 6e68db7760 |
|
@ -14,7 +14,7 @@ logger = logging.getLogger('db')
|
||||||
IS_COMPENSATION_DETAILS_PDF, ALLOWED_BRANCH, ELIGIBLESTUDENTS, SELECTION_PROCEDURE_ROUNDS,
|
IS_COMPENSATION_DETAILS_PDF, ALLOWED_BRANCH, ELIGIBLESTUDENTS, SELECTION_PROCEDURE_ROUNDS,
|
||||||
SELECTION_PROCEDURE_DETAILS,
|
SELECTION_PROCEDURE_DETAILS,
|
||||||
IS_SELECTION_PROCEDURE_DETAILS_PDF, TENTATIVE_DATE_OF_JOINING, TENTATIVE_NO_OF_OFFERS, OTHER_REQUIREMENTS,
|
IS_SELECTION_PROCEDURE_DETAILS_PDF, TENTATIVE_DATE_OF_JOINING, TENTATIVE_NO_OF_OFFERS, OTHER_REQUIREMENTS,
|
||||||
RECAPTCHA_VALUE, JOB_LOCATION,PSYCHOMETRIC_TEST,MEDICAL_TEST,COMPANY_TURNOVER,NUMBER_OF_EMPLOYEES,BACKLOG_ELIGIBLE,PWD_ELIGIBLE,CPI ,COMPANY_TURNOVER,ESTABLISHMENT_DATE ,EXPECTED_NO_OF_OFFERS])
|
RECAPTCHA_VALUE, JOB_LOCATION,PSYCHOMETRIC_TEST,MEDICAL_TEST,NUMBER_OF_EMPLOYEES,BACKLOG_ELIGIBLE,PWD_ELIGIBLE,CPI,EXPECTED_NO_OF_OFFERS])
|
||||||
|
|
||||||
def addPlacement(request):
|
def addPlacement(request):
|
||||||
logger.info("JNF filled by " + str(request.data['email']))
|
logger.info("JNF filled by " + str(request.data['email']))
|
||||||
|
@ -84,11 +84,9 @@ def addPlacement(request):
|
||||||
# Add a contact person details in the opening
|
# Add a contact person details in the opening
|
||||||
opening.contact_person_name = data[CONTACT_PERSON_NAME]
|
opening.contact_person_name = data[CONTACT_PERSON_NAME]
|
||||||
# Check if Phone number is Integer
|
# Check if Phone number is Integer
|
||||||
if data[PHONE_NUMBER].isdigit():
|
|
||||||
opening.phone_number = int(data[PHONE_NUMBER])
|
opening.phone_number = data[PHONE_NUMBER]
|
||||||
else:
|
|
||||||
raise ValueError('Phone number should be integer')
|
|
||||||
|
|
||||||
opening.email = data[EMAIL]
|
opening.email = data[EMAIL]
|
||||||
|
|
||||||
# Add a company location in the opening
|
# Add a company location in the opening
|
||||||
|
@ -139,12 +137,17 @@ def addPlacement(request):
|
||||||
else:
|
else:
|
||||||
raise ValueError('Compensation CTC must be an integer')
|
raise ValueError('Compensation CTC must be an integer')
|
||||||
# Newly added
|
# Newly added
|
||||||
|
|
||||||
if data[COMPANY_TURNOVER].isdigit():
|
if data[COMPANY_TURNOVER].isdigit():
|
||||||
opening.company_turnover = int(data[COMPANY_TURNOVER])
|
opening.company_turnover = int(data[COMPANY_TURNOVER])
|
||||||
elif data[COMPANY_TURNOVER] is None:
|
elif data[COMPANY_TURNOVER] is None or data[COMPANY_TURNOVER] == '':
|
||||||
opening.company_turnover = None
|
opening.company_turnover = None
|
||||||
else:
|
else:
|
||||||
raise ValueError('Company Turnover must be an integer')
|
# Handle the case where the data is not a valid number or None/empty
|
||||||
|
# You can raise an error, set a default value, or log a warning
|
||||||
|
opening.company_turnover = None # Or some default value or error handling
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check if compensation_gross is integer
|
# Check if compensation_gross is integer
|
||||||
if data[COMPENSATION_GROSS].isdigit():
|
if data[COMPENSATION_GROSS].isdigit():
|
||||||
|
@ -227,8 +230,14 @@ def addPlacement(request):
|
||||||
# Convert to date object
|
# Convert to date object
|
||||||
opening.tentative_date_of_joining = datetime.datetime.strptime(data[TENTATIVE_DATE_OF_JOINING],
|
opening.tentative_date_of_joining = datetime.datetime.strptime(data[TENTATIVE_DATE_OF_JOINING],
|
||||||
'%d-%m-%Y').date()
|
'%d-%m-%Y').date()
|
||||||
opening.establishment_date = datetime.datetime.strptime(data[ESTABLISHMENT_DATE],
|
establishment_date_str = data.get('ESTABLISHMENT_DATE', '')
|
||||||
'%d-%m-%Y').date() # newly added field
|
if establishment_date_str:
|
||||||
|
try:
|
||||||
|
opening.establishment_date = datetime.datetime.strptime(establishment_date_str, '%d-%m-%Y').date()
|
||||||
|
except ValueError:
|
||||||
|
opening.establishment_date = None
|
||||||
|
else:
|
||||||
|
opening.establishment_date = None
|
||||||
|
|
||||||
# Only Allowing Fourth Year for Placement
|
# Only Allowing Fourth Year for Placement
|
||||||
opening.allowed_batch = [FOURTH_YEAR,]
|
opening.allowed_batch = [FOURTH_YEAR,]
|
||||||
|
@ -455,12 +464,18 @@ def addInternship(request):
|
||||||
raise ValueError('Season must be a subset of ' + str(SEASONS))
|
raise ValueError('Season must be a subset of ' + str(SEASONS))
|
||||||
internship.interning_period_from = datetime.datetime.strptime(data[START_DATE], '%d-%m-%Y').date()
|
internship.interning_period_from = datetime.datetime.strptime(data[START_DATE], '%d-%m-%Y').date()
|
||||||
internship.interning_period_to = datetime.datetime.strptime(data[END_DATE], '%d-%m-%Y').date()
|
internship.interning_period_to = datetime.datetime.strptime(data[END_DATE], '%d-%m-%Y').date()
|
||||||
internship.establishment_date = datetime.datetime.strptime(data[ESTABLISHMENT_DATE], '%d-%m-%Y').date() # newly added field
|
establishment_date_str = data.get('ESTABLISHMENT_DATE', '')
|
||||||
|
if establishment_date_str:
|
||||||
|
try:
|
||||||
|
internship.establishment_date = datetime.datetime.strptime(establishment_date_str, '%d-%m-%Y').date()
|
||||||
|
except ValueError:
|
||||||
|
internship.establishment_date = None
|
||||||
|
else:
|
||||||
|
internship.establishment_date = None
|
||||||
if data[WORK_TYPE] == 'Work from home':
|
if data[WORK_TYPE] == 'Work from home':
|
||||||
internship.is_work_from_home = True
|
internship.is_work_from_home = True
|
||||||
else:
|
else:
|
||||||
internship.is_work_from_home = False
|
internship.is_work_from_home = False
|
||||||
|
|
||||||
if ALLOWED_BATCH in data and (data[ALLOWED_BATCH] is None or json.loads(data[ALLOWED_BATCH]) == ""):
|
if ALLOWED_BATCH in data and (data[ALLOWED_BATCH] is None or json.loads(data[ALLOWED_BATCH]) == ""):
|
||||||
raise ValueError('Allowed Batches cannot be empty')
|
raise ValueError('Allowed Batches cannot be empty')
|
||||||
elif ALLOWED_BATCH in data and set(json.loads(data[ALLOWED_BATCH])).issubset(BATCHES):
|
elif ALLOWED_BATCH in data and set(json.loads(data[ALLOWED_BATCH])).issubset(BATCHES):
|
||||||
|
@ -529,10 +544,12 @@ def addInternship(request):
|
||||||
# Newly added
|
# Newly added
|
||||||
if data[COMPANY_TURNOVER].isdigit():
|
if data[COMPANY_TURNOVER].isdigit():
|
||||||
internship.company_turnover = int(data[COMPANY_TURNOVER])
|
internship.company_turnover = int(data[COMPANY_TURNOVER])
|
||||||
elif data[COMPANY_TURNOVER] is None:
|
elif data[COMPANY_TURNOVER] is None or data[COMPANY_TURNOVER] == '':
|
||||||
internship.company_turnover = None
|
internship.company_turnover = None
|
||||||
else:
|
else:
|
||||||
raise ValueError('Company Turnover must be an integer')
|
# Handle the case where the data is not a valid number or None/empty
|
||||||
|
# You can raise an error, set a default value, or log a warning
|
||||||
|
internship.company_turnover = None # Or some default value or error handling
|
||||||
# newly added
|
# newly added
|
||||||
if data[EXPECTED_NO_OF_OFFERS].isdigit():
|
if data[EXPECTED_NO_OF_OFFERS].isdigit():
|
||||||
internship.expected_no_of_offers = int(data[EXPECTED_NO_OF_OFFERS])
|
internship.expected_no_of_offers = int(data[EXPECTED_NO_OF_OFFERS])
|
||||||
|
|
|
@ -10,13 +10,14 @@ BRANCH_CHOICES = [
|
||||||
['EP', 'EP'],
|
['EP', 'EP'],
|
||||||
['CIVIL', 'CIVIL'],
|
['CIVIL', 'CIVIL'],
|
||||||
['CHEMICAL', 'CHEMICAL'],
|
['CHEMICAL', 'CHEMICAL'],
|
||||||
['BSMS', 'BSMS'],
|
['MNC','MNC']
|
||||||
]
|
]
|
||||||
ELIGIBLE_CHOICES = [
|
ELIGIBLE_CHOICES = [
|
||||||
["Btech", "Btech"],
|
["Btech", "Btech"],
|
||||||
["MS", "MS"],
|
["MS", "MS"],
|
||||||
["MTech", "MTech"],
|
["MTech", "MTech"],
|
||||||
["PHD", "PHD"],
|
["PHD", "PHD"],
|
||||||
|
["BSMS", "BSMS"],
|
||||||
]
|
]
|
||||||
BRANCHES = [
|
BRANCHES = [
|
||||||
"CSE",
|
"CSE",
|
||||||
|
@ -25,13 +26,14 @@ BRANCHES = [
|
||||||
"EP",
|
"EP",
|
||||||
"CIVIL",
|
"CIVIL",
|
||||||
"CHEMICAL",
|
"CHEMICAL",
|
||||||
"BSMS",
|
"MNC",
|
||||||
]
|
]
|
||||||
ELIGIBLE =[
|
ELIGIBLE =[
|
||||||
"Btech",
|
"Btech",
|
||||||
"MS",
|
"MS",
|
||||||
"MTech",
|
"MTech",
|
||||||
"PHD",
|
"PHD",
|
||||||
|
"BSMS",
|
||||||
]
|
]
|
||||||
BATCHES = [ #change it accordingly
|
BATCHES = [ #change it accordingly
|
||||||
"2023",
|
"2023",
|
||||||
|
@ -40,6 +42,7 @@ BATCHES = [ #change it accordingly
|
||||||
"2020",
|
"2020",
|
||||||
]
|
]
|
||||||
BATCH_CHOICES = [
|
BATCH_CHOICES = [
|
||||||
|
["2023","2023"],
|
||||||
["2022", "2022"],
|
["2022", "2022"],
|
||||||
["2021", "2021"],
|
["2021", "2021"],
|
||||||
["2020", "2020"],
|
["2020", "2020"],
|
||||||
|
@ -64,7 +67,7 @@ TIERS = [
|
||||||
['7', 'Tier 7'],
|
['7', 'Tier 7'],
|
||||||
['8', 'Open Tier'],
|
['8', 'Open Tier'],
|
||||||
]
|
]
|
||||||
|
bTech = 'Btech'
|
||||||
# not being used anywhere
|
# not being used anywhere
|
||||||
DEGREE_CHOICES = [
|
DEGREE_CHOICES = [
|
||||||
['bTech', 'B.Tech'],
|
['bTech', 'B.Tech'],
|
||||||
|
@ -83,7 +86,10 @@ CDC_REPS_EMAILS = [
|
||||||
"satyapriya.gupta@iitdh.ac.in",
|
"satyapriya.gupta@iitdh.ac.in",
|
||||||
"dhriti.ghosh@iitdh.ac.in",
|
"dhriti.ghosh@iitdh.ac.in",
|
||||||
"suvamay.jana@iitdh.ac.in",
|
"suvamay.jana@iitdh.ac.in",
|
||||||
"ramesh.nayaka@iitdh.ac.in"
|
"ramesh.nayaka@iitdh.ac.in",
|
||||||
|
"210010003@iitdh.ac.in",
|
||||||
|
"210010046@iitdh.ac.in",
|
||||||
|
"210030035@iitdh.ac.in",
|
||||||
]
|
]
|
||||||
CDC_REPS_EMAILS_FOR_ISSUE=[ #add reps emails
|
CDC_REPS_EMAILS_FOR_ISSUE=[ #add reps emails
|
||||||
"cdc.support@iitdh.ac.in",
|
"cdc.support@iitdh.ac.in",
|
||||||
|
|
|
@ -92,7 +92,7 @@ class Placement(models.Model):
|
||||||
default=list, blank=True)
|
default=list, blank=True)
|
||||||
is_company_details_pdf = models.BooleanField(blank=False, default=False)
|
is_company_details_pdf = models.BooleanField(blank=False, default=False)
|
||||||
contact_person_name = models.CharField(blank=False, max_length=JNF_TEXT_MAX_CHARACTER_COUNT)
|
contact_person_name = models.CharField(blank=False, max_length=JNF_TEXT_MAX_CHARACTER_COUNT)
|
||||||
phone_number = models.PositiveBigIntegerField(blank=False)
|
phone_number = models.CharField(max_length=15, blank=False)
|
||||||
email = models.CharField(blank=False, max_length=JNF_SMALLTEXT_MAX_CHARACTER_COUNT, default="")
|
email = models.CharField(blank=False, max_length=JNF_SMALLTEXT_MAX_CHARACTER_COUNT, default="")
|
||||||
city = models.CharField(blank=False, max_length=JNF_SMALLTEXT_MAX_CHARACTER_COUNT, default="")
|
city = models.CharField(blank=False, max_length=JNF_SMALLTEXT_MAX_CHARACTER_COUNT, default="")
|
||||||
state = models.CharField(blank=False, max_length=JNF_SMALLTEXT_MAX_CHARACTER_COUNT, default="")
|
state = models.CharField(blank=False, max_length=JNF_SMALLTEXT_MAX_CHARACTER_COUNT, default="")
|
||||||
|
@ -109,7 +109,7 @@ class Placement(models.Model):
|
||||||
blank=True)
|
blank=True)
|
||||||
is_description_pdf = models.BooleanField(blank=False, default=False)
|
is_description_pdf = models.BooleanField(blank=False, default=False)
|
||||||
compensation_CTC = models.IntegerField(blank=False, default=None, null=True) # Job - Per Year
|
compensation_CTC = models.IntegerField(blank=False, default=None, null=True) # Job - Per Year
|
||||||
company_turnover = models.IntegerField(blank=False, default=None, null=True) # newly added field
|
company_turnover = models.IntegerField(blank=True, default=None, null=True) # newly added field
|
||||||
compensation_gross = models.IntegerField(blank=False, default=None, null=True)
|
compensation_gross = models.IntegerField(blank=False, default=None, null=True)
|
||||||
compensation_take_home = models.IntegerField(blank=False, default=None, null=True)
|
compensation_take_home = models.IntegerField(blank=False, default=None, null=True)
|
||||||
compensation_bonus = models.IntegerField(blank=True, default=None, null=True)
|
compensation_bonus = models.IntegerField(blank=True, default=None, null=True)
|
||||||
|
@ -142,7 +142,7 @@ class Placement(models.Model):
|
||||||
)
|
)
|
||||||
tentative_no_of_offers = models.IntegerField(blank=False, default=None, null=True)
|
tentative_no_of_offers = models.IntegerField(blank=False, default=None, null=True)
|
||||||
expected_no_of_offers = models.IntegerField(blank=False , default=None , null=True) # newly added
|
expected_no_of_offers = models.IntegerField(blank=False , default=None , null=True) # newly added
|
||||||
number_of_employees = models.IntegerField(blank=False, default=None, null=True) # newly added field
|
number_of_employees = models.IntegerField(blank=True, default=None, null=True) # newly added field
|
||||||
eligiblestudents = ArrayField(
|
eligiblestudents = ArrayField(
|
||||||
models.CharField(choices=ELIGIBLE_CHOICES, blank=False, max_length=10),
|
models.CharField(choices=ELIGIBLE_CHOICES, blank=False, max_length=10),
|
||||||
size=10,
|
size=10,
|
||||||
|
@ -383,7 +383,7 @@ class Internship(models.Model):
|
||||||
is_selection_procedure_details_pdf = models.BooleanField(blank=False, default=False)
|
is_selection_procedure_details_pdf = models.BooleanField(blank=False, default=False)
|
||||||
#contact details of company person
|
#contact details of company person
|
||||||
contact_person_name = models.CharField(blank=False, max_length=JNF_TEXT_MAX_CHARACTER_COUNT)
|
contact_person_name = models.CharField(blank=False, max_length=JNF_TEXT_MAX_CHARACTER_COUNT)
|
||||||
phone_number = models.PositiveBigIntegerField(blank=False)
|
phone_number = models.CharField(max_length=15, blank=False)
|
||||||
email = models.EmailField(blank=False)
|
email = models.EmailField(blank=False)
|
||||||
# contact_person_designation = models.CharField(blank=False, max_length=JNF_SMALLTEXT_MAX_CHARACTER_COUNT, default="")
|
# contact_person_designation = models.CharField(blank=False, max_length=JNF_SMALLTEXT_MAX_CHARACTER_COUNT, default="")
|
||||||
# telephone_number = models.PositiveBigIntegerField(blank=True, default=None, null=True)
|
# telephone_number = models.PositiveBigIntegerField(blank=True, default=None, null=True)
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
from datetime import datetime as dt
|
||||||
from rest_framework.decorators import api_view
|
from rest_framework.decorators import api_view
|
||||||
from django.db.models import Q
|
from django.db.models import Q
|
||||||
|
|
||||||
|
@ -104,7 +105,7 @@ def getDashboard(request, id, email, user_type):
|
||||||
filters = Q(
|
filters = Q(
|
||||||
allowed_branch__contains=[studentDetails.branch],
|
allowed_branch__contains=[studentDetails.branch],
|
||||||
eligiblestudents__contains=[studentDetails.degree],
|
eligiblestudents__contains=[studentDetails.degree],
|
||||||
deadline_datetime__gte=datetime.now(),
|
deadline_datetime__gte=dt.now(),
|
||||||
offer_accepted=True,
|
offer_accepted=True,
|
||||||
email_verified=True
|
email_verified=True
|
||||||
)
|
)
|
||||||
|
|
|
@ -238,38 +238,38 @@ def PlacementApplicationConditions(student, placement):
|
||||||
PPO_PSU = [i for i in PPO if i.tier == 'psu']
|
PPO_PSU = [i for i in PPO if i.tier == 'psu']
|
||||||
# find length of PPO
|
# find length of PPO
|
||||||
if len(selected_companies) + len(PPO) >= MAX_OFFERS_PER_STUDENT:
|
if len(selected_companies) + len(PPO) >= MAX_OFFERS_PER_STUDENT:
|
||||||
raise PermissionError("Max Applications Reached for the Season")
|
raise PermissionError("Max Applications Reached for the Season1")
|
||||||
|
|
||||||
if len(selected_companies_PSU) > 0:
|
if len(selected_companies_PSU) > 0:
|
||||||
raise PermissionError('Selected for PSU Can\'t apply anymore')
|
raise PermissionError('Selected for PSU Can\'t apply anymore2')
|
||||||
|
|
||||||
if len(PPO_PSU) > 0:
|
if len(PPO_PSU) > 0:
|
||||||
raise PermissionError('Selected for PSU Can\'t apply anymore')
|
raise PermissionError('Selected for PSU Can\'t apply anymore3')
|
||||||
|
|
||||||
if placement.tier == 'psu':
|
if placement.tier == 'psu':
|
||||||
return True, "Conditions Satisfied"
|
return True, "Conditions Satisfied"
|
||||||
|
|
||||||
for i in selected_companies:
|
for i in selected_companies:
|
||||||
if 1.5 * i.compensation_CTC > placement.compensation_CTC:
|
if 1.5 * i.placement.compensation_CTC > placement.compensation_CTC:
|
||||||
return False, "Can't apply for this Placement, 1.5 times CTC condition not satisfied"
|
return False, "Can't apply for this Placement, 1.5 times CTC condition not satisfied"
|
||||||
|
|
||||||
for i in PPO:
|
for i in PPO:
|
||||||
if 1.5 * i.compensation_CTC > placement.compensation_CTC:
|
if 1.5 * i.compensation > placement.compensation_CTC:
|
||||||
return False, "Can't apply for this Placement, 1.5 times CTC condition not satisfied"
|
return False, "Can't apply for this Placement, 1.5 times CTC condition not satisfied"
|
||||||
if student.degree not in placement.eligiblestudents:
|
if student.degree not in placement.eligiblestudents:
|
||||||
raise PermissionError("Can't apply for this placement")
|
raise PermissionError("Can't apply for this placement4")
|
||||||
if student.degree == 'bTech' and student.batch not in placement.allowed_batch:
|
if student.degree == bTech and student.batch not in placement.allowed_batch:
|
||||||
raise PermissionError("Can't apply for this placement")
|
raise PermissionError("Can't apply for this placement5")
|
||||||
if student.branch not in placement.allowed_branch:
|
if student.branch not in placement.allowed_branch:
|
||||||
raise PermissionError("Can't apply for this placement")
|
raise PermissionError("Can't apply for this placement6")
|
||||||
if student.can_apply == False:
|
if student.can_apply == False:
|
||||||
raise PermissionError("Can't apply for this placement")
|
raise PermissionError("Can't apply for this placement7")
|
||||||
if student.isBacklog == True and placement.backlog_eligible == False:
|
if student.isBacklog == True and placement.backlog_eligible == False:
|
||||||
raise PermissionError("Can't apply for this placement")
|
raise PermissionError("Can't apply for this placement8")
|
||||||
if student.isPwd == True and placement.pwd_eligible == False:
|
if student.isPwd == True and placement.pwd_eligible == False:
|
||||||
raise PermissionError("Can't apply for this placement")
|
raise PermissionError("Can't apply for this placement9")
|
||||||
if placement.cpi_eligible > student.cpi:
|
if placement.cpi_eligible > student.cpi:
|
||||||
raise PermissionError("Can't apply for this placement")
|
raise PermissionError("Can't apply for this placement10")
|
||||||
|
|
||||||
return True, "Conditions Satisfied"
|
return True, "Conditions Satisfied"
|
||||||
|
|
||||||
|
|
|
@ -1,137 +1,196 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
||||||
<meta name="x-apple-disable-message-reformatting">
|
<meta name="x-apple-disable-message-reformatting" />
|
||||||
<title>Email Template</title>
|
<title>Email Template</title>
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
<link rel="preconnect" href="https://fonts.gstatic.com" />
|
||||||
<link rel="shortcut icon" href="favicon.ico"/>
|
<link rel="shortcut icon" href="favicon.ico" />
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap" rel="stylesheet">
|
<link
|
||||||
|
href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
<style>
|
<style>
|
||||||
body, table, td, div, p, h1 {
|
body,
|
||||||
font-family: 'Roboto', sans-serif;
|
table,
|
||||||
}
|
td,
|
||||||
body {
|
div,
|
||||||
margin: 0;
|
p,
|
||||||
padding: 0;
|
h1 {
|
||||||
background-color: #e1e4e8; /* Outer background color */
|
font-family: "Roboto", sans-serif;
|
||||||
}
|
}
|
||||||
.email-wrapper {
|
body {
|
||||||
padding: 20px;
|
margin: 0;
|
||||||
background-color: #e1e4e8; /* Outer background color */
|
padding: 0;
|
||||||
}
|
background-color: #e1e4e8; /* Outer background color */
|
||||||
.email-container {
|
}
|
||||||
width: 100%;
|
.email-wrapper {
|
||||||
max-width: 600px;
|
padding: 20px;
|
||||||
margin: 0 auto;
|
background-color: #e1e4e8; /* Outer background color */
|
||||||
background-color: #eff7ff; /* Outer box background color */
|
}
|
||||||
border-radius: 8px;
|
.email-container {
|
||||||
overflow: hidden;
|
width: 100%;
|
||||||
}
|
max-width: 600px;
|
||||||
.email-header, .email-footer {
|
margin: 0 auto;
|
||||||
padding: 40px 0;
|
background-color: #eff7ff; /* Outer box background color */
|
||||||
text-align: center;
|
border-radius: 8px;
|
||||||
color: #ffffff;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
.email-header img {
|
.email-header,
|
||||||
width: 150px;
|
.email-footer {
|
||||||
height: auto;
|
padding: 40px 0;
|
||||||
margin-bottom: 20px;
|
text-align: center;
|
||||||
}
|
color: #ffffff;
|
||||||
.email-header h1 {
|
}
|
||||||
margin: 0;
|
.email-header img {
|
||||||
font-size: 24px;
|
width: 150px;
|
||||||
font-weight: 500;
|
height: auto;
|
||||||
}
|
margin-bottom: 20px;
|
||||||
.inner-container {
|
}
|
||||||
background-color: #ffffff; /* Inner box background color */
|
.email-header h1 {
|
||||||
border-radius: 8px;
|
margin: 0;
|
||||||
margin: 0 20px;
|
font-size: 24px;
|
||||||
}
|
font-weight: 500;
|
||||||
.inner-container .email-body {
|
}
|
||||||
padding: 36px 30px;
|
.inner-container {
|
||||||
}
|
background-color: #ffffff; /* Inner box background color */
|
||||||
.inner-container .email-body h2 {
|
border-radius: 8px;
|
||||||
margin-bottom: 24px;
|
margin: 0 20px;
|
||||||
font-size: 24px;
|
}
|
||||||
color: black;
|
.inner-container .email-body {
|
||||||
font-weight: 500;
|
padding: 36px 30px;
|
||||||
}
|
}
|
||||||
.inner-container .email-body p {
|
.inner-container .email-body h2 {
|
||||||
margin-bottom: 16px;
|
margin-bottom: 24px;
|
||||||
font-size: 16px;
|
font-size: 24px;
|
||||||
line-height: 24px;
|
color: black;
|
||||||
color: #555555;
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
|
.inner-container .email-body p {
|
||||||
|
margin-bottom: 16px;
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 24px;
|
||||||
|
color: #555555;
|
||||||
|
}
|
||||||
|
.email-footer {
|
||||||
|
padding: 20px 30px;
|
||||||
|
text-align: center;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
.email-footer p {
|
||||||
|
margin: 0;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 20px;
|
||||||
|
}
|
||||||
|
.button {
|
||||||
|
display: inline-block;
|
||||||
|
padding: 12px 24px;
|
||||||
|
margin: 20px 0;
|
||||||
|
font-size: 16px;
|
||||||
|
color: #ffffff;
|
||||||
|
background-color: #ff7350;
|
||||||
|
text-decoration: none;
|
||||||
|
border-radius: 5px;
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
@media only screen and (max-width: 600px) {
|
||||||
|
.inner-container .email-body,
|
||||||
.email-footer {
|
.email-footer {
|
||||||
padding: 20px 30px;
|
padding: 20px !important;
|
||||||
text-align: center;
|
|
||||||
color: #ffffff;
|
|
||||||
}
|
|
||||||
.email-footer p {
|
|
||||||
margin: 0;
|
|
||||||
font-size: 14px;
|
|
||||||
line-height: 20px;
|
|
||||||
}
|
|
||||||
.button {
|
|
||||||
display: inline-block;
|
|
||||||
padding: 12px 24px;
|
|
||||||
margin: 20px 0;
|
|
||||||
font-size: 16px;
|
|
||||||
color: #ffffff;
|
|
||||||
background-color: #ff7350;
|
|
||||||
text-decoration: none;
|
|
||||||
border-radius: 5px;
|
|
||||||
font-weight: 500;
|
|
||||||
}
|
|
||||||
@media only screen and (max-width: 600px) {
|
|
||||||
.inner-container .email-body, .email-footer {
|
|
||||||
padding: 20px !important;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="email-wrapper">
|
<div class="email-wrapper">
|
||||||
<table role="presentation" class="email-container">
|
<table role="presentation" class="email-container">
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<div class="email-header">
|
<div class="email-header">
|
||||||
<img src="./images/CDC-Logo.png" alt="CDC Logo" style="width: 35%; height: auto; display: block; margin: 0 auto;" />
|
<img
|
||||||
</div>
|
src="https://cdc.iitdh.ac.in/storage/Images/CDC-Logo.png"
|
||||||
<div class="inner-container">
|
alt="CDC Logo"
|
||||||
<div class="email-body">
|
style="width: 35%; height: auto; display: block; margin: 0 auto"
|
||||||
|
/>
|
||||||
<img src="./images/Approved.png" alt="verify Logo" style="width: 35%; height: auto; display: block; margin: 0 auto;" />
|
</div>
|
||||||
<h2 style="text-align: center;">Verification Required</h2>
|
<div class="inner-container">
|
||||||
<p style="text-align: center;">We have received your <strong>{{opening_type}}</strong> Notification for <strong>{{designation}}</strong>.
|
<div class="email-body">
|
||||||
Please verify your email by clicking the button below:</p>
|
<img
|
||||||
<p style="text-align: center;">
|
src="https://cdc.iitdh.ac.in/storage/Images/Approved.png"
|
||||||
<a href="{{one_time_link}}" style="display: inline-block; padding: 12px 24px; margin: 20px 0; font-size: 16px; color: #ffffff; background-color: #ff7350; text-decoration: none; border-radius: 50px; font-weight: 500;">Verify Email</a>
|
alt="verify Logo"
|
||||||
</p>
|
style="
|
||||||
</div>
|
width: 35%;
|
||||||
</div>
|
height: auto;
|
||||||
<div class="email-footer">
|
display: block;
|
||||||
<p style="margin-bottom: 16px; color: #555555;">Follow us on:</p>
|
margin: 0 auto;
|
||||||
|
"
|
||||||
<a href="https://twitter.com/cdc_iitdh" style="margin-right: 10px; color: #eff7ff">
|
/>
|
||||||
<img src="./images/twitter.png" alt="Twitter" style="width: 24px; height: 24px;">
|
<h2 style="text-align: center">Verification Required</h2>
|
||||||
</a>
|
<p style="text-align: center">
|
||||||
<a href="https://www.instagram.com/cdc.iitdh/?hl=en" style="margin-right: 10px; color: #eff7ff;">
|
We have received your
|
||||||
<img src="./images/Instagram_icon.png" alt="Instagram" style="width: 24px; height: 24px;">
|
<strong>{{opening_type}}</strong> Notification for
|
||||||
</a>
|
<strong>{{designation}}</strong>. Please verify your email by
|
||||||
<a href="https://www.linkedin.com/company/cdciitdharwad/?originalSubdomain=in">
|
clicking the button below:
|
||||||
<img src="./images/LinkedIn_logo_initials.png" alt="LinkedIn" style="width: 24px; height: 24px;">
|
</p>
|
||||||
</a>
|
<p style="text-align: center">
|
||||||
<p style="color: #555555;">copy right © 2024 CDC, all rights reserved</p>
|
<a
|
||||||
|
href="{{one_time_link}}"
|
||||||
</div>
|
style="
|
||||||
|
display: inline-block;
|
||||||
|
padding: 12px 24px;
|
||||||
</td>
|
margin: 20px 0;
|
||||||
</tr>
|
font-size: 16px;
|
||||||
</table>
|
color: #ffffff;
|
||||||
|
background-color: #ff7350;
|
||||||
|
text-decoration: none;
|
||||||
|
border-radius: 50px;
|
||||||
|
font-weight: 500;
|
||||||
|
"
|
||||||
|
>Verify Email</a
|
||||||
|
>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="email-footer">
|
||||||
|
<p style="margin-bottom: 16px; color: #555555">Follow us on:</p>
|
||||||
|
|
||||||
|
<a
|
||||||
|
href="https://twitter.com/cdc_iitdh"
|
||||||
|
style="margin-right: 10px; color: #eff7ff"
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="https://cdc.iitdh.ac.in/storage/Images/twitter.png"
|
||||||
|
alt="Twitter"
|
||||||
|
style="width: 24px; height: 24px"
|
||||||
|
/>
|
||||||
|
</a>
|
||||||
|
<a
|
||||||
|
href="https://www.instagram.com/cdc.iitdh/?hl=en"
|
||||||
|
style="margin-right: 10px; color: #eff7ff"
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="https://cdc.iitdh.ac.in/storage/Images/Instagram_icon.png"
|
||||||
|
alt="Instagram"
|
||||||
|
style="width: 24px; height: 24px"
|
||||||
|
/>
|
||||||
|
</a>
|
||||||
|
<a
|
||||||
|
href="https://www.linkedin.com/company/cdciitdharwad/?originalSubdomain=in"
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="https://cdc.iitdh.ac.in/storage/Images/LinkedIn_logo_initials.png"
|
||||||
|
alt="LinkedIn"
|
||||||
|
style="width: 24px; height: 24px"
|
||||||
|
/>
|
||||||
|
</a>
|
||||||
|
<p style="color: #555555">
|
||||||
|
copy right © 2024 CDC, all rights reserved
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -118,12 +118,12 @@
|
||||||
<div class="email-container">
|
<div class="email-container">
|
||||||
|
|
||||||
<div class="email-header">
|
<div class="email-header">
|
||||||
<img src="./images/CDC-Logo.png" alt="CDC Logo" style="width: 35%; height: auto; display: block; margin: 0 auto;" />
|
<img src="https://cdc.iitdh.ac.in/storage/Images/CDC-Logo.png" alt="CDC Logo" style="width: 35%; height: auto; display: block; margin: 0 auto;" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="inner-container">
|
<div class="inner-container">
|
||||||
<div class="email-body">
|
<div class="email-body">
|
||||||
<img src="./images/email_2058176.png" alt="Notification Logo" style="width: 20%; height: auto; display: block; margin: 0 auto;" />
|
<img src="https://cdc.iitdh.ac.in/storage/Images/email_2058176.png" alt="Notification Logo" style="width: 20%; height: auto; display: block; margin: 0 auto;" />
|
||||||
<h2 style="text-align: center;">{{type}} Notification Form Response</h2>
|
<h2 style="text-align: center;">{{type}} Notification Form Response</h2>
|
||||||
<p style="text-align: center;">
|
<p style="text-align: center;">
|
||||||
<table id="details_table">
|
<table id="details_table">
|
||||||
|
@ -173,13 +173,13 @@
|
||||||
<p style="margin-bottom: 16px; color: #555555;">Follow us on:</p>
|
<p style="margin-bottom: 16px; color: #555555;">Follow us on:</p>
|
||||||
<div class="social-icons">
|
<div class="social-icons">
|
||||||
<a href="https://twitter.com/cdc_iitdh" style="margin-right: 10px; color: #eff7ff">
|
<a href="https://twitter.com/cdc_iitdh" style="margin-right: 10px; color: #eff7ff">
|
||||||
<img src="./images/twitter.png" alt="Twitter">
|
<img src="https://cdc.iitdh.ac.in/storage/Images/twitter.png" alt="Twitter">
|
||||||
</a>
|
</a>
|
||||||
<a href="https://www.instagram.com/cdc.iitdh/?hl=en" style="margin-right: 10px; color: #eff7ff">
|
<a href="https://www.instagram.com/cdc.iitdh/?hl=en" style="margin-right: 10px; color: #eff7ff">
|
||||||
<img src="./images/Instagram_icon.png" alt="Instagram">
|
<img src="https://cdc.iitdh.ac.in/storage/Images/Instagram_icon.png" alt="Instagram">
|
||||||
</a>
|
</a>
|
||||||
<a href="https://www.linkedin.com/company/cdciitdharwad/?originalSubdomain=in" style="margin-right: 10px; color: #eff7ff">
|
<a href="https://www.linkedin.com/company/cdciitdharwad/?originalSubdomain=in" style="margin-right: 10px; color: #eff7ff">
|
||||||
<img src="./images/LinkedIn_logo_initials.png" alt="LinkedIn">
|
<img src="https://cdc.iitdh.ac.in/storage/Images/LinkedIn_logo_initials.png" alt="LinkedIn">
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<p style="color: #555555;">© 2024 CDC, all rights reserved</p>
|
<p style="color: #555555;">© 2024 CDC, all rights reserved</p>
|
||||||
|
|
|
@ -1,126 +1,155 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
||||||
<meta name="x-apple-disable-message-reformatting">
|
<meta name="x-apple-disable-message-reformatting" />
|
||||||
<title></title>
|
<title></title>
|
||||||
<!--[if mso]>
|
<!--[if mso]>
|
||||||
<noscript>
|
<noscript>
|
||||||
<xml>
|
<xml>
|
||||||
<o:OfficeDocumentSettings>
|
<o:OfficeDocumentSettings>
|
||||||
<o:PixelsPerInch>96</o:PixelsPerInch>
|
<o:PixelsPerInch>96</o:PixelsPerInch>
|
||||||
</o:OfficeDocumentSettings>
|
</o:OfficeDocumentSettings>
|
||||||
</xml>
|
</xml>
|
||||||
</noscript>
|
</noscript>
|
||||||
<![endif]-->
|
<![endif]-->
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
<link rel="preconnect" href="https://fonts.gstatic.com" />
|
||||||
<link rel="shortcut icon" href="favicon.ico"/>
|
<link rel="shortcut icon" href="favicon.ico" />
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap" rel="stylesheet">
|
<link
|
||||||
|
href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
<style>
|
<style>
|
||||||
body, table, td, div, h1, p {
|
body,
|
||||||
font-family: 'Roboto', sans-serif;
|
table,
|
||||||
}
|
td,
|
||||||
|
div,
|
||||||
|
h1,
|
||||||
|
p {
|
||||||
|
font-family: "Roboto", sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.email-wrapper {
|
.email-wrapper {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
background-color: #ffffff;
|
background-color: #ffffff;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.email-container {
|
.email-container {
|
||||||
max-width: 600px;
|
max-width: 600px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
border: 8 px;
|
border: 8 px;
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
background-color: #eff7ff;
|
background-color: #eff7ff;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.email-header, .email-footer {
|
.email-header,
|
||||||
|
.email-footer {
|
||||||
padding: 40px 0;
|
padding: 40px 0;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.email-header img {
|
.email-header img {
|
||||||
width: 200px;
|
width: 200px;
|
||||||
height: auto;
|
height: auto;
|
||||||
}
|
}
|
||||||
.inner-container {
|
.inner-container {
|
||||||
background-color: #ffffff; /* Inner box background color */
|
background-color: #ffffff; /* Inner box background color */
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
margin: 0 20px;
|
margin: 0 20px;
|
||||||
}
|
}
|
||||||
.inner-container .email-body {
|
.inner-container .email-body {
|
||||||
padding: 36px 30px 42px 30px;
|
padding: 36px 30px 42px 30px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.inner-container .email-body h2 {
|
.inner-container .email-body h2 {
|
||||||
font-size: 24px;
|
font-size: 24px;
|
||||||
margin: 0 0 20px 0;
|
margin: 0 0 20px 0;
|
||||||
color: #153643;
|
color: #153643;
|
||||||
}
|
}
|
||||||
|
|
||||||
.inner-container .email-body p {
|
.inner-container .email-body p {
|
||||||
margin: 0 0 12px 0;
|
margin: 0 0 12px 0;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
line-height: 24px;
|
line-height: 24px;
|
||||||
color: #153643;
|
color: #153643;
|
||||||
}
|
}
|
||||||
|
|
||||||
#details_table {
|
#details_table {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
border: 1px solid #334878;
|
border: 1px solid #334878;
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
}
|
}
|
||||||
|
|
||||||
#details_table td {
|
#details_table td {
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
color: #153643;
|
color: #153643;
|
||||||
border: 1px solid #334878;
|
border: 1px solid #334878;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.email-footer {
|
||||||
|
padding: 20px 30px;
|
||||||
|
text-align: center;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
.email-footer p {
|
||||||
|
margin: 0;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 20px;
|
||||||
|
}
|
||||||
|
@media only screen and (max-width: 600px) {
|
||||||
|
.inner-container .email-body,
|
||||||
.email-footer {
|
.email-footer {
|
||||||
padding: 20px 30px;
|
padding: 20px !important;
|
||||||
text-align: center;
|
|
||||||
color: #ffffff;
|
|
||||||
}
|
|
||||||
.email-footer p {
|
|
||||||
margin: 0;
|
|
||||||
font-size: 14px;
|
|
||||||
line-height: 20px;
|
|
||||||
}
|
|
||||||
@media only screen and (max-width: 600px) {
|
|
||||||
.inner-container .email-body, .email-footer {
|
|
||||||
padding: 20px !important;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="email-wrapper">
|
<div class="email-wrapper">
|
||||||
<table role="presentation" class="email-container">
|
<table role="presentation" class="email-container">
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<div class="email-header">
|
<div class="email-header">
|
||||||
<img src="./images/CDC-Logo.png" alt="CDC Logo" style="width: 35%; height: auto; display: block; margin: 0 auto;" />
|
<img
|
||||||
</div>
|
src="https://cdc.iitdh.ac.in/storage/Images/CDC-Logo.png"
|
||||||
<div class="inner-container">
|
alt="CDC Logo"
|
||||||
<div class="email-body">
|
style="width: 35%; height: auto; display: block; margin: 0 auto"
|
||||||
|
/>
|
||||||
<img src="./images/Confirmed.png" alt="verify Logo" style="width: 30%; height: auto; display: block; margin: 0 auto;" />
|
</div>
|
||||||
<h2 style="text-align: center;">Thank You For Filling The Form</h2>
|
<div class="inner-container">
|
||||||
<p style="text-align: center;">We have received your <b>{{ opening_type }}</b> notification for a <b>{{ designation }}</b> offer at <b>{{ company_name }}</b>.
|
<div class="email-body">
|
||||||
We will keep you informed with the updates. If you have any queries, please feel free to write to <nobr><u>cdc@iitdh.ac.in</u></nobr>.</p>
|
<img
|
||||||
<!-- <table id="details_table">
|
src="https://cdc.iitdh.ac.in/storage/Images/Confirmed.png"
|
||||||
|
alt="verify Logo"
|
||||||
|
style="
|
||||||
|
width: 30%;
|
||||||
|
height: auto;
|
||||||
|
display: block;
|
||||||
|
margin: 0 auto;
|
||||||
|
"
|
||||||
|
/>
|
||||||
|
<h2 style="text-align: center">
|
||||||
|
Thank You For Filling The Form
|
||||||
|
</h2>
|
||||||
|
<p style="text-align: center">
|
||||||
|
We have received your <b>{{ opening_type }}</b> notification
|
||||||
|
for a <b>{{ designation }}</b> offer at
|
||||||
|
<b>{{ company_name }}</b>. We will keep you informed with the
|
||||||
|
updates. If you have any queries, please feel free to write to
|
||||||
|
<nobr><u>cdc@iitdh.ac.in</u></nobr
|
||||||
|
>.
|
||||||
|
</p>
|
||||||
|
<!-- <table id="details_table">
|
||||||
{% for key, value in data.items %}
|
{% for key, value in data.items %}
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{ key }}</td>
|
<td>{{ key }}</td>
|
||||||
|
@ -138,26 +167,47 @@
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</table> -->
|
</table> -->
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="email-footer">
|
<div class="email-footer">
|
||||||
<p style="margin-bottom: 16px; color: #555555;">Follow us on:</p>
|
<p style="margin-bottom: 16px; color: #555555">Follow us on:</p>
|
||||||
|
|
||||||
<a href="https://twitter.com/cdc_iitdh" style="margin-right: 10px; color: #eff7ff">
|
<a
|
||||||
<img src="./images/twitter.png" alt="Twitter" style="width: 24px; height: 24px;">
|
href="https://twitter.com/cdc_iitdh"
|
||||||
</a>
|
style="margin-right: 10px; color: #eff7ff"
|
||||||
<a href="https://www.instagram.com/cdc.iitdh/?hl=en" style="margin-right: 10px; color: #eff7ff;">
|
>
|
||||||
<img src="./images/Instagram_icon.png" alt="Instagram" style="width: 24px; height: 24px;">
|
<img
|
||||||
</a>
|
src="https://cdc.iitdh.ac.in/storage/Images/twitter.png"
|
||||||
<a href="https://www.linkedin.com/company/cdciitdharwad/?originalSubdomain=in">
|
alt="Twitter"
|
||||||
<img src="./images/LinkedIn_logo_initials.png" alt="LinkedIn" style="width: 24px; height: 24px;">
|
style="width: 24px; height: 24px"
|
||||||
</a>
|
/>
|
||||||
<p style="color: #555555;">copy right © 2024 CDC, all rights reserved</p>
|
</a>
|
||||||
|
<a
|
||||||
</div>
|
href="https://www.instagram.com/cdc.iitdh/?hl=en"
|
||||||
</td>
|
style="margin-right: 10px; color: #eff7ff"
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="https://cdc.iitdh.ac.in/storage/Images/Instagram_icon.png"
|
||||||
|
alt="Instagram"
|
||||||
|
style="width: 24px; height: 24px"
|
||||||
|
/>
|
||||||
|
</a>
|
||||||
|
<a
|
||||||
|
href="https://www.linkedin.com/company/cdciitdharwad/?originalSubdomain=in"
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="https://cdc.iitdh.ac.in/storage/Images/LinkedIn_logo_initials.png"
|
||||||
|
alt="LinkedIn"
|
||||||
|
style="width: 24px; height: 24px"
|
||||||
|
/>
|
||||||
|
</a>
|
||||||
|
<p style="color: #555555">
|
||||||
|
copy right © 2024 CDC, all rights reserved
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Before Width: | Height: | Size: 186 KiB |
Before Width: | Height: | Size: 164 KiB |
Before Width: | Height: | Size: 6.2 KiB |
Before Width: | Height: | Size: 1.3 MiB |
Before Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 8.8 KiB |
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 96 KiB |
Before Width: | Height: | Size: 19 KiB |
Before Width: | Height: | Size: 40 KiB |
Before Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 23 KiB |
Before Width: | Height: | Size: 25 KiB |
Before Width: | Height: | Size: 4.6 KiB |
|
@ -107,11 +107,11 @@
|
||||||
<td>
|
<td>
|
||||||
|
|
||||||
<div class="email-header">
|
<div class="email-header">
|
||||||
<img src="./images/CDC-Logo.png" alt="CDC Logo" style="width: 35%; height: auto; display: block; margin: 0 auto;" />
|
<img src="https://cdc.iitdh.ac.in/storage/Images/CDC-Logo.png" alt="CDC Logo" style="width: 35%; height: auto; display: block; margin: 0 auto;" />
|
||||||
</div>
|
</div>
|
||||||
<div class="inner-container">
|
<div class="inner-container">
|
||||||
<div class="email-body">
|
<div class="email-body">
|
||||||
<img src="./images/notification.png" alt="verify Logo" style="width: 30%; height: auto; display: block; margin: 0 auto;" />
|
<img src="https://cdc.iitdh.ac.in/storage/Images/notification.png" alt="verify Logo" style="width: 30%; height: auto; display: block; margin: 0 auto;" />
|
||||||
<h2 style="text-align: center;">{{ opening_type }} Opportunity at {{ company_name }}</h2>
|
<h2 style="text-align: center;">{{ opening_type }} Opportunity at {{ company_name }}</h2>
|
||||||
<p style="text-align: center;">
|
<p style="text-align: center;">
|
||||||
Greetings of the day. Hope you are fine and doing well !
|
Greetings of the day. Hope you are fine and doing well !
|
||||||
|
@ -130,13 +130,13 @@
|
||||||
<p style="margin-bottom: 16px; color: #555555;">Follow us on:</p>
|
<p style="margin-bottom: 16px; color: #555555;">Follow us on:</p>
|
||||||
|
|
||||||
<a href="https://twitter.com/cdc_iitdh" style="margin-right: 10px; color: #eff7ff">
|
<a href="https://twitter.com/cdc_iitdh" style="margin-right: 10px; color: #eff7ff">
|
||||||
<img src="./images/twitter.png" alt="Twitter" style="width: 24px; height: 24px;">
|
<img src="https://cdc.iitdh.ac.in/storage/Images/twitter.png" alt="Twitter" style="width: 24px; height: 24px;">
|
||||||
</a>
|
</a>
|
||||||
<a href="https://www.instagram.com/cdc.iitdh/?hl=en" style="margin-right: 10px; color: #eff7ff;">
|
<a href="https://www.instagram.com/cdc.iitdh/?hl=en" style="margin-right: 10px; color: #eff7ff;">
|
||||||
<img src="./images/Instagram_icon.png" alt="Instagram" style="width: 24px; height: 24px;">
|
<img src="https://cdc.iitdh.ac.in/storage/Images/Instagram_icon.png" alt="Instagram" style="width: 24px; height: 24px;">
|
||||||
</a>
|
</a>
|
||||||
<a href="https://www.linkedin.com/company/cdciitdharwad/?originalSubdomain=in">
|
<a href="https://www.linkedin.com/company/cdciitdharwad/?originalSubdomain=in">
|
||||||
<img src="./images/LinkedIn_logo_initials.png" alt="LinkedIn" style="width: 24px; height: 24px;">
|
<img src="https://cdc.iitdh.ac.in/storage/Images/LinkedIn_logo_initials.png" alt="LinkedIn" style="width: 24px; height: 24px;">
|
||||||
</a>
|
</a>
|
||||||
<p style="color: #555555;">copy right © 2024 CDC, all rights reserved</p>
|
<p style="color: #555555;">copy right © 2024 CDC, all rights reserved</p>
|
||||||
|
|
||||||
|
|
|
@ -1,162 +1,206 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
||||||
<meta name="x-apple-disable-message-reformatting">
|
<meta name="x-apple-disable-message-reformatting" />
|
||||||
<title></title>
|
<title></title>
|
||||||
<!--[if mso]>
|
<!--[if mso]>
|
||||||
<noscript>
|
<noscript>
|
||||||
<xml>
|
<xml>
|
||||||
<o:OfficeDocumentSettings>
|
<o:OfficeDocumentSettings>
|
||||||
<o:PixelsPerInch>96</o:PixelsPerInch>
|
<o:PixelsPerInch>96</o:PixelsPerInch>
|
||||||
</o:OfficeDocumentSettings>
|
</o:OfficeDocumentSettings>
|
||||||
</xml>
|
</xml>
|
||||||
</noscript>
|
</noscript>
|
||||||
<![endif]-->
|
<![endif]-->
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
<link rel="preconnect" href="https://fonts.gstatic.com" />
|
||||||
<link rel="shortcut icon" href="favicon.ico"/>
|
<link rel="shortcut icon" href="favicon.ico" />
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap" rel="stylesheet">
|
<link
|
||||||
|
href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
<style>
|
<style>
|
||||||
body, table, td, div, p, h1 {
|
body,
|
||||||
font-family: 'Roboto', sans-serif;
|
table,
|
||||||
}
|
td,
|
||||||
body {
|
div,
|
||||||
margin: 0;
|
p,
|
||||||
padding: 0;
|
h1 {
|
||||||
background-color: #e1e4e8; /* Outer background color */
|
font-family: "Roboto", sans-serif;
|
||||||
}
|
}
|
||||||
.email-wrapper {
|
body {
|
||||||
padding: 20px;
|
margin: 0;
|
||||||
background-color: #e1e4e8; /* Outer background color */
|
padding: 0;
|
||||||
}
|
background-color: #e1e4e8; /* Outer background color */
|
||||||
.email-container {
|
}
|
||||||
width: 100%;
|
.email-wrapper {
|
||||||
max-width: 600px;
|
padding: 20px;
|
||||||
margin: 0 auto;
|
background-color: #e1e4e8; /* Outer background color */
|
||||||
background-color: #eff7ff; /* Outer box background color */
|
}
|
||||||
border-radius: 8px;
|
.email-container {
|
||||||
overflow: hidden;
|
width: 100%;
|
||||||
}
|
max-width: 600px;
|
||||||
.email-header, .email-footer {
|
margin: 0 auto;
|
||||||
padding: 40px 0;
|
background-color: #eff7ff; /* Outer box background color */
|
||||||
text-align: center;
|
border-radius: 8px;
|
||||||
color: #ffffff;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
.email-header img {
|
.email-header,
|
||||||
width: 150px;
|
.email-footer {
|
||||||
height: auto;
|
padding: 40px 0;
|
||||||
margin-bottom: 20px;
|
text-align: center;
|
||||||
}
|
color: #ffffff;
|
||||||
.email-header h1 {
|
}
|
||||||
margin: 0;
|
.email-header img {
|
||||||
font-size: 24px;
|
width: 150px;
|
||||||
font-weight: 500;
|
height: auto;
|
||||||
}
|
margin-bottom: 20px;
|
||||||
.inner-container {
|
}
|
||||||
background-color: #ffffff; /* Inner box background color */
|
.email-header h1 {
|
||||||
border-radius: 8px;
|
margin: 0;
|
||||||
margin: 0 20px;
|
font-size: 24px;
|
||||||
}
|
font-weight: 500;
|
||||||
.inner-container .email-body {
|
}
|
||||||
padding: 36px 30px;
|
.inner-container {
|
||||||
}
|
background-color: #ffffff; /* Inner box background color */
|
||||||
.inner-container .email-body h2 {
|
border-radius: 8px;
|
||||||
margin-bottom: 24px;
|
margin: 0 20px;
|
||||||
font-size: 24px;
|
}
|
||||||
color: black;
|
.inner-container .email-body {
|
||||||
font-weight: 500;
|
padding: 36px 30px;
|
||||||
}
|
}
|
||||||
.inner-container .email-body p {
|
.inner-container .email-body h2 {
|
||||||
margin-bottom: 16px;
|
margin-bottom: 24px;
|
||||||
font-size: 16px;
|
font-size: 24px;
|
||||||
line-height: 24px;
|
color: black;
|
||||||
color: #555555;
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
|
.inner-container .email-body p {
|
||||||
|
margin-bottom: 16px;
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 24px;
|
||||||
|
color: #555555;
|
||||||
|
}
|
||||||
|
.email-footer {
|
||||||
|
padding: 20px 30px;
|
||||||
|
text-align: center;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
.email-footer p {
|
||||||
|
margin: 0;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 20px;
|
||||||
|
}
|
||||||
|
.button {
|
||||||
|
display: inline-block;
|
||||||
|
padding: 12px 24px;
|
||||||
|
margin: 20px 0;
|
||||||
|
font-size: 16px;
|
||||||
|
color: #ffffff;
|
||||||
|
background-color: #ff7350;
|
||||||
|
text-decoration: none;
|
||||||
|
border-radius: 5px;
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
@media only screen and (max-width: 600px) {
|
||||||
|
.inner-container .email-body,
|
||||||
.email-footer {
|
.email-footer {
|
||||||
padding: 20px 30px;
|
padding: 20px !important;
|
||||||
text-align: center;
|
|
||||||
color: #ffffff;
|
|
||||||
}
|
|
||||||
.email-footer p {
|
|
||||||
margin: 0;
|
|
||||||
font-size: 14px;
|
|
||||||
line-height: 20px;
|
|
||||||
}
|
|
||||||
.button {
|
|
||||||
display: inline-block;
|
|
||||||
padding: 12px 24px;
|
|
||||||
margin: 20px 0;
|
|
||||||
font-size: 16px;
|
|
||||||
color: #ffffff;
|
|
||||||
background-color: #ff7350;
|
|
||||||
text-decoration: none;
|
|
||||||
border-radius: 5px;
|
|
||||||
font-weight: 500;
|
|
||||||
}
|
|
||||||
@media only screen and (max-width: 600px) {
|
|
||||||
.inner-container .email-body, .email-footer {
|
|
||||||
padding: 20px !important;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="email-wrapper">
|
<div class="email-wrapper">
|
||||||
<table role="presentation" class="email-container">
|
<table role="presentation" class="email-container">
|
||||||
<tr>
|
<tr>
|
||||||
<td >
|
<td>
|
||||||
<div class="email-header">
|
<div class="email-header">
|
||||||
<img src="./images/CDC-Logo.png" alt="CDC Logo" style="width: 35%; height: auto; display: block; margin: 0 auto;" />
|
<img
|
||||||
|
src="https://cdc.iitdh.ac.in/storage/Images/CDC-Logo.png"
|
||||||
|
alt="CDC Logo"
|
||||||
|
style="width: 35%; height: auto; display: block; margin: 0 auto"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div class="inner-container">
|
<div class="inner-container">
|
||||||
<div class="email-body">
|
<div class="email-body">
|
||||||
<img src="./images/tracking.png" alt="verify Logo" style="width: 35%; height: auto; display: block; margin: 0 auto;" />
|
<img
|
||||||
<h1 style="text-align: center;">Hello, Folks</h1>
|
src="https://cdc.iitdh.ac.in/storage/Images/tracking.png"
|
||||||
<p style="text-align: center;">
|
alt="verify Logo"
|
||||||
We have received a issue regarding a <b>{{ application_type }}</b> opening at
|
style="
|
||||||
<b>
|
width: 35%;
|
||||||
{{ company_name }}</b> From {{name}}.
|
height: auto;
|
||||||
{% if additional_info %}
|
display: block;
|
||||||
We received these additional details
|
margin: 0 auto;
|
||||||
<br>
|
"
|
||||||
|
/>
|
||||||
<!-- <table style="border:solid 1px; margin: auto; text-align: center;width: 80%;
|
<h1 style="text-align: center">Hello, Folks</h1>
|
||||||
|
<p style="text-align: center">
|
||||||
|
We have received a issue regarding a
|
||||||
|
<b>{{ application_type }}</b> opening at
|
||||||
|
<b> {{ company_name }}</b> From {{name}}. {% if
|
||||||
|
additional_info %} We received these additional details
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<!-- <table style="border:solid 1px; margin: auto; text-align: center;width: 80%;
|
||||||
border-radius:15px; background-color: #e0e3ee"> -->
|
border-radius:15px; background-color: #e0e3ee"> -->
|
||||||
|
|
||||||
{% for i,j in additional_info.items %}
|
{% for i,j in additional_info.items %}
|
||||||
|
|
||||||
<!-- <tr>
|
<!-- <tr>
|
||||||
<td style="padding:8px 10px;color:#153643; ">{{ i }}:</td>
|
<td style="padding:8px 10px;color:#153643; ">{{ i }}:</td>
|
||||||
<td style="padding:8px 10px;color:#153643;">{{ j }}</td>
|
<td style="padding:8px 10px;color:#153643;">{{ j }}</td>
|
||||||
</tr> -->
|
</tr> -->
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
<!-- </table> -->
|
<!-- </table> -->
|
||||||
{% endif %}
|
{% endif %} please look into it and take necessary actions.
|
||||||
|
get in touch with the student at
|
||||||
|
<nobr><u>{{ email }}</u></nobr>
|
||||||
|
|
||||||
please look into it and take necessary actions.
|
<!-- </p> -->
|
||||||
get in touch with the student at <nobr><u>{{ email }}</u></nobr>
|
</p>
|
||||||
|
</div>
|
||||||
<!-- </p> -->
|
</div>
|
||||||
</p></div></div>
|
<div class="email-footer">
|
||||||
<div class="email-footer">
|
<p style="margin-bottom: 16px; color: #555555">Follow us on:</p>
|
||||||
<p style="margin-bottom: 16px; color: #555555;">Follow us on:</p>
|
|
||||||
|
<a
|
||||||
<a href="https://twitter.com/cdc_iitdh" style="margin-right: 10px; color: #eff7ff">
|
href="https://twitter.com/cdc_iitdh"
|
||||||
<img src="./images/twitter.png" alt="Twitter" style="width: 24px; height: 24px;">
|
style="margin-right: 10px; color: #eff7ff"
|
||||||
</a>
|
>
|
||||||
<a href="https://www.instagram.com/cdc.iitdh/?hl=en" style="margin-right: 10px; color: #eff7ff;">
|
<img
|
||||||
<img src="./images/Instagram_icon.png" alt="Instagram" style="width: 24px; height: 24px;">
|
src="https://cdc.iitdh.ac.in/storage/Images/twitter.png"
|
||||||
</a>
|
alt="Twitter"
|
||||||
<a href="https://www.linkedin.com/company/cdciitdharwad/?originalSubdomain=in">
|
style="width: 24px; height: 24px"
|
||||||
<img src="./images/LinkedIn_logo_initials.png" alt="LinkedIn" style="width: 24px; height: 24px;">
|
/>
|
||||||
</a>
|
</a>
|
||||||
<p style="color: #555555;">copy right © 2024 CDC, all rights reserved</p>
|
<a
|
||||||
|
href="https://www.instagram.com/cdc.iitdh/?hl=en"
|
||||||
</div>
|
style="margin-right: 10px; color: #eff7ff"
|
||||||
</td>
|
>
|
||||||
</tr>
|
<img
|
||||||
</table>
|
src="https://cdc.iitdh.ac.in/storage/Images/Instagram_icon.png"
|
||||||
</div>
|
alt="Instagram"
|
||||||
</body>
|
style="width: 24px; height: 24px"
|
||||||
</html>
|
/>
|
||||||
|
</a>
|
||||||
|
<a
|
||||||
|
href="https://www.linkedin.com/company/cdciitdharwad/?originalSubdomain=in"
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="https://cdc.iitdh.ac.in/storage/Images/LinkedIn_logo_initials.png"
|
||||||
|
alt="LinkedIn"
|
||||||
|
style="width: 24px; height: 24px"
|
||||||
|
/>
|
||||||
|
</a>
|
||||||
|
<p style="color: #555555">
|
||||||
|
copy right © 2024 CDC, all rights reserved
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
|
@ -1,143 +1,188 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
||||||
<meta name="x-apple-disable-message-reformatting">
|
<meta name="x-apple-disable-message-reformatting" />
|
||||||
<title></title>
|
<title></title>
|
||||||
<!--[if mso]>
|
<!--[if mso]>
|
||||||
<noscript>
|
<noscript>
|
||||||
<xml>
|
<xml>
|
||||||
<o:OfficeDocumentSettings>
|
<o:OfficeDocumentSettings>
|
||||||
<o:PixelsPerInch>96</o:PixelsPerInch>
|
<o:PixelsPerInch>96</o:PixelsPerInch>
|
||||||
</o:OfficeDocumentSettings>
|
</o:OfficeDocumentSettings>
|
||||||
</xml>
|
</xml>
|
||||||
</noscript>
|
</noscript>
|
||||||
<![endif]-->
|
<![endif]-->
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
<link rel="preconnect" href="https://fonts.gstatic.com" />
|
||||||
<link rel="shortcut icon" href="favicon.ico"/>
|
<link rel="shortcut icon" href="favicon.ico" />
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap" rel="stylesheet">
|
<link
|
||||||
|
href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
<style>
|
<style>
|
||||||
body, table, td, div, p, h1 {
|
body,
|
||||||
font-family: 'Roboto', sans-serif;
|
table,
|
||||||
}
|
td,
|
||||||
body {
|
div,
|
||||||
margin: 0;
|
p,
|
||||||
padding: 0;
|
h1 {
|
||||||
background-color: #e1e4e8; /* Outer background color */
|
font-family: "Roboto", sans-serif;
|
||||||
}
|
}
|
||||||
.email-wrapper {
|
body {
|
||||||
padding: 20px;
|
margin: 0;
|
||||||
background-color: #e1e4e8; /* Outer background color */
|
padding: 0;
|
||||||
}
|
background-color: #e1e4e8; /* Outer background color */
|
||||||
.email-container {
|
}
|
||||||
width: 100%;
|
.email-wrapper {
|
||||||
max-width: 600px;
|
padding: 20px;
|
||||||
margin: 0 auto;
|
background-color: #e1e4e8; /* Outer background color */
|
||||||
background-color: #eff7ff; /* Outer box background color */
|
}
|
||||||
border-radius: 8px;
|
.email-container {
|
||||||
overflow: hidden;
|
width: 100%;
|
||||||
}
|
max-width: 600px;
|
||||||
.email-header, .email-footer {
|
margin: 0 auto;
|
||||||
padding: 40px 0;
|
background-color: #eff7ff; /* Outer box background color */
|
||||||
text-align: center;
|
border-radius: 8px;
|
||||||
color: #ffffff;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
.email-header img {
|
.email-header,
|
||||||
width: 150px;
|
.email-footer {
|
||||||
height: auto;
|
padding: 40px 0;
|
||||||
margin-bottom: 20px;
|
text-align: center;
|
||||||
}
|
color: #ffffff;
|
||||||
.email-header h1 {
|
}
|
||||||
margin: 0;
|
.email-header img {
|
||||||
font-size: 24px;
|
width: 150px;
|
||||||
font-weight: 500;
|
height: auto;
|
||||||
}
|
margin-bottom: 20px;
|
||||||
.inner-container {
|
}
|
||||||
background-color: #ffffff; /* Inner box background color */
|
.email-header h1 {
|
||||||
border-radius: 8px;
|
margin: 0;
|
||||||
margin: 0 20px;
|
font-size: 24px;
|
||||||
}
|
font-weight: 500;
|
||||||
.inner-container .email-body {
|
}
|
||||||
padding: 36px 30px;
|
.inner-container {
|
||||||
}
|
background-color: #ffffff; /* Inner box background color */
|
||||||
.inner-container .email-body h2 {
|
border-radius: 8px;
|
||||||
margin-bottom: 24px;
|
margin: 0 20px;
|
||||||
font-size: 24px;
|
}
|
||||||
color: black;
|
.inner-container .email-body {
|
||||||
font-weight: 500;
|
padding: 36px 30px;
|
||||||
}
|
}
|
||||||
.inner-container .email-body p {
|
.inner-container .email-body h2 {
|
||||||
margin-bottom: 16px;
|
margin-bottom: 24px;
|
||||||
font-size: 16px;
|
font-size: 24px;
|
||||||
line-height: 24px;
|
color: black;
|
||||||
color: #555555;
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
|
.inner-container .email-body p {
|
||||||
|
margin-bottom: 16px;
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 24px;
|
||||||
|
color: #555555;
|
||||||
|
}
|
||||||
|
.email-footer {
|
||||||
|
padding: 20px 30px;
|
||||||
|
text-align: center;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
.email-footer p {
|
||||||
|
margin: 0;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 20px;
|
||||||
|
}
|
||||||
|
.button {
|
||||||
|
display: inline-block;
|
||||||
|
padding: 12px 24px;
|
||||||
|
margin: 20px 0;
|
||||||
|
font-size: 16px;
|
||||||
|
color: #ffffff;
|
||||||
|
background-color: #ff7350;
|
||||||
|
text-decoration: none;
|
||||||
|
border-radius: 5px;
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
@media only screen and (max-width: 600px) {
|
||||||
|
.inner-container .email-body,
|
||||||
.email-footer {
|
.email-footer {
|
||||||
padding: 20px 30px;
|
padding: 20px !important;
|
||||||
text-align: center;
|
|
||||||
color: #ffffff;
|
|
||||||
}
|
|
||||||
.email-footer p {
|
|
||||||
margin: 0;
|
|
||||||
font-size: 14px;
|
|
||||||
line-height: 20px;
|
|
||||||
}
|
|
||||||
.button {
|
|
||||||
display: inline-block;
|
|
||||||
padding: 12px 24px;
|
|
||||||
margin: 20px 0;
|
|
||||||
font-size: 16px;
|
|
||||||
color: #ffffff;
|
|
||||||
background-color: #ff7350;
|
|
||||||
text-decoration: none;
|
|
||||||
border-radius: 5px;
|
|
||||||
font-weight: 500;
|
|
||||||
}
|
|
||||||
@media only screen and (max-width: 600px) {
|
|
||||||
.inner-container .email-body, .email-footer {
|
|
||||||
padding: 20px !important;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="email-wrapper">
|
<div class="email-wrapper">
|
||||||
<table role="presentation" class="email-container">
|
<table role="presentation" class="email-container">
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<div class="email-header">
|
<div class="email-header">
|
||||||
<img src="./images/CDC-Logo.png" alt="CDC Logo" style="width: 35%; height: auto; display: block; margin: 0 auto;" />
|
<img
|
||||||
|
src="https://cdc.iitdh.ac.in/storage/Images/CDC-Logo.png"
|
||||||
|
alt="CDC Logo"
|
||||||
|
style="width: 35%; height: auto; display: block; margin: 0 auto"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div class="inner-container">
|
<div class="inner-container">
|
||||||
<div class="email-body">
|
<div class="email-body">
|
||||||
<img src="./images/Rejected.png" alt="rejection Logo" style="width: 30%; height: auto; display: block; margin: 0 auto;" />
|
<img
|
||||||
<h2 style="text-align: center;">Hey, {{ student_name }}</h2>
|
src="https://cdc.iitdh.ac.in/storage/Images/Rejected.png"
|
||||||
<p style="text-align: center;">
|
alt="rejection Logo"
|
||||||
We regret to inform you that you have not been selected for
|
style="
|
||||||
<b>{{ designation }}</b> role at <b>{{ company_name }}</b>.
|
width: 30%;
|
||||||
CDC will keep bringing more such opportunities for you in the future.
|
height: auto;
|
||||||
|
display: block;
|
||||||
|
margin: 0 auto;
|
||||||
</p></div></div>
|
"
|
||||||
<div class="email-footer">
|
/>
|
||||||
<p style="margin-bottom: 16px; color: #555555;">Follow us on:</p>
|
<h2 style="text-align: center">Hey, {{ student_name }}</h2>
|
||||||
|
<p style="text-align: center">
|
||||||
<a href="https://twitter.com/cdc_iitdh" style="margin-right: 10px; color: #eff7ff">
|
We regret to inform you that you have not been selected for
|
||||||
<img src="./images/twitter.png" alt="Twitter" style="width: 24px; height: 24px;">
|
<b>{{ designation }}</b> role at <b>{{ company_name }}</b>.
|
||||||
</a>
|
CDC will keep bringing more such opportunities for you in the
|
||||||
<a href="https://www.instagram.com/cdc.iitdh/?hl=en" style="margin-right: 10px; color: #eff7ff;">
|
future.
|
||||||
<img src="./images/Instagram_icon.png" alt="Instagram" style="width: 24px; height: 24px;">
|
</p>
|
||||||
</a>
|
</div>
|
||||||
<a href="https://www.linkedin.com/company/cdciitdharwad/?originalSubdomain=in">
|
</div>
|
||||||
<img src="./images/LinkedIn_logo_initials.png" alt="LinkedIn" style="width: 24px; height: 24px;">
|
<div class="email-footer">
|
||||||
</a>
|
<p style="margin-bottom: 16px; color: #555555">Follow us on:</p>
|
||||||
<p style="color: #555555;">copy right © 2024 CDC, all rights reserved</p>
|
|
||||||
|
<a
|
||||||
</div>
|
href="https://twitter.com/cdc_iitdh"
|
||||||
</td>
|
style="margin-right: 10px; color: #eff7ff"
|
||||||
</tr>
|
>
|
||||||
</table>
|
<img
|
||||||
</div>
|
src="https://cdc.iitdh.ac.in/storage/Images/twitter.png"
|
||||||
</body>
|
alt="Twitter"
|
||||||
|
style="width: 24px; height: 24px"
|
||||||
|
/>
|
||||||
|
</a>
|
||||||
|
<a
|
||||||
|
href="https://www.instagram.com/cdc.iitdh/?hl=en"
|
||||||
|
style="margin-right: 10px; color: #eff7ff"
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="https://cdc.iitdh.ac.in/storage/Images/Instagram_icon.png"
|
||||||
|
alt="Instagram"
|
||||||
|
style="width: 24px; height: 24px"
|
||||||
|
/>
|
||||||
|
</a>
|
||||||
|
<a
|
||||||
|
href="https://www.linkedin.com/company/cdciitdharwad/?originalSubdomain=in"
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="https://cdc.iitdh.ac.in/storage/Images/LinkedIn_logo_initials.png"
|
||||||
|
alt="LinkedIn"
|
||||||
|
style="width: 24px; height: 24px"
|
||||||
|
/>
|
||||||
|
</a>
|
||||||
|
<p style="color: #555555">
|
||||||
|
copy right © 2024 CDC, all rights reserved
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -1,139 +1,186 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
||||||
<meta name="x-apple-disable-message-reformatting">
|
<meta name="x-apple-disable-message-reformatting" />
|
||||||
<title></title>
|
<title></title>
|
||||||
<!--[if mso]>
|
<!--[if mso]>
|
||||||
<noscript>
|
<noscript>
|
||||||
<xml>
|
<xml>
|
||||||
<o:OfficeDocumentSettings>
|
<o:OfficeDocumentSettings>
|
||||||
<o:PixelsPerInch>96</o:PixelsPerInch>
|
<o:PixelsPerInch>96</o:PixelsPerInch>
|
||||||
</o:OfficeDocumentSettings>
|
</o:OfficeDocumentSettings>
|
||||||
</xml>
|
</xml>
|
||||||
</noscript>
|
</noscript>
|
||||||
<![endif]-->
|
<![endif]-->
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
<link rel="preconnect" href="https://fonts.gstatic.com" />
|
||||||
<link rel="shortcut icon" href="favicon.ico"/>
|
<link rel="shortcut icon" href="favicon.ico" />
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap" rel="stylesheet">
|
<link
|
||||||
|
href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
<style>
|
<style>
|
||||||
body, table, td, div, p, h1 {
|
body,
|
||||||
font-family: 'Roboto', sans-serif;
|
table,
|
||||||
}
|
td,
|
||||||
body {
|
div,
|
||||||
margin: 0;
|
p,
|
||||||
padding: 0;
|
h1 {
|
||||||
background-color: #e1e4e8; /* Outer background color */
|
font-family: "Roboto", sans-serif;
|
||||||
}
|
}
|
||||||
.email-wrapper {
|
body {
|
||||||
padding: 20px;
|
margin: 0;
|
||||||
background-color: #e1e4e8; /* Outer background color */
|
padding: 0;
|
||||||
}
|
background-color: #e1e4e8; /* Outer background color */
|
||||||
.email-container {
|
}
|
||||||
width: 100%;
|
.email-wrapper {
|
||||||
max-width: 600px;
|
padding: 20px;
|
||||||
margin: 0 auto;
|
background-color: #e1e4e8; /* Outer background color */
|
||||||
background-color: #eff7ff; /* Outer box background color */
|
}
|
||||||
border-radius: 8px;
|
.email-container {
|
||||||
overflow: hidden;
|
width: 100%;
|
||||||
}
|
max-width: 600px;
|
||||||
.email-header, .email-footer {
|
margin: 0 auto;
|
||||||
padding: 40px 0;
|
background-color: #eff7ff; /* Outer box background color */
|
||||||
text-align: center;
|
border-radius: 8px;
|
||||||
color: #ffffff;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
.email-header img {
|
.email-header,
|
||||||
width: 150px;
|
.email-footer {
|
||||||
height: auto;
|
padding: 40px 0;
|
||||||
margin-bottom: 20px;
|
text-align: center;
|
||||||
}
|
color: #ffffff;
|
||||||
.email-header h1 {
|
}
|
||||||
margin: 0;
|
.email-header img {
|
||||||
font-size: 24px;
|
width: 150px;
|
||||||
font-weight: 500;
|
height: auto;
|
||||||
}
|
margin-bottom: 20px;
|
||||||
.inner-container {
|
}
|
||||||
background-color: #ffffff; /* Inner box background color */
|
.email-header h1 {
|
||||||
border-radius: 8px;
|
margin: 0;
|
||||||
margin: 0 20px;
|
font-size: 24px;
|
||||||
}
|
font-weight: 500;
|
||||||
.inner-container .email-body {
|
}
|
||||||
padding: 36px 30px;
|
.inner-container {
|
||||||
}
|
background-color: #ffffff; /* Inner box background color */
|
||||||
.inner-container .email-body h2 {
|
border-radius: 8px;
|
||||||
margin-bottom: 24px;
|
margin: 0 20px;
|
||||||
font-size: 24px;
|
}
|
||||||
color: black;
|
.inner-container .email-body {
|
||||||
font-weight: 500;
|
padding: 36px 30px;
|
||||||
}
|
}
|
||||||
.inner-container .email-body p {
|
.inner-container .email-body h2 {
|
||||||
margin-bottom: 16px;
|
margin-bottom: 24px;
|
||||||
font-size: 16px;
|
font-size: 24px;
|
||||||
line-height: 24px;
|
color: black;
|
||||||
color: #555555;
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
|
.inner-container .email-body p {
|
||||||
|
margin-bottom: 16px;
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 24px;
|
||||||
|
color: #555555;
|
||||||
|
}
|
||||||
|
.email-footer {
|
||||||
|
padding: 20px 30px;
|
||||||
|
text-align: center;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
.email-footer p {
|
||||||
|
margin: 0;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 20px;
|
||||||
|
}
|
||||||
|
.button {
|
||||||
|
display: inline-block;
|
||||||
|
padding: 12px 24px;
|
||||||
|
margin: 20px 0;
|
||||||
|
font-size: 16px;
|
||||||
|
color: #ffffff;
|
||||||
|
background-color: #ff7350;
|
||||||
|
text-decoration: none;
|
||||||
|
border-radius: 5px;
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
@media only screen and (max-width: 600px) {
|
||||||
|
.inner-container .email-body,
|
||||||
.email-footer {
|
.email-footer {
|
||||||
padding: 20px 30px;
|
padding: 20px !important;
|
||||||
text-align: center;
|
|
||||||
color: #ffffff;
|
|
||||||
}
|
|
||||||
.email-footer p {
|
|
||||||
margin: 0;
|
|
||||||
font-size: 14px;
|
|
||||||
line-height: 20px;
|
|
||||||
}
|
|
||||||
.button {
|
|
||||||
display: inline-block;
|
|
||||||
padding: 12px 24px;
|
|
||||||
margin: 20px 0;
|
|
||||||
font-size: 16px;
|
|
||||||
color: #ffffff;
|
|
||||||
background-color: #ff7350;
|
|
||||||
text-decoration: none;
|
|
||||||
border-radius: 5px;
|
|
||||||
font-weight: 500;
|
|
||||||
}
|
|
||||||
@media only screen and (max-width: 600px) {
|
|
||||||
.inner-container .email-body, .email-footer {
|
|
||||||
padding: 20px !important;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="email-wrapper">
|
<div class="email-wrapper">
|
||||||
<table role="presentation" class="email-container">
|
<table role="presentation" class="email-container">
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<div class="email-header">
|
<div class="email-header">
|
||||||
<img src="./images/CDC-Logo.png" alt="CDC Logo" style="width: 35%; height: auto; display: block; margin: 0 auto;" />
|
<img
|
||||||
|
src="https://cdc.iitdh.ac.in/storage/Images/CDC-Logo.png"
|
||||||
|
alt="CDC Logo"
|
||||||
|
style="width: 35%; height: auto; display: block; margin: 0 auto"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div class="inner-container">
|
<div class="inner-container">
|
||||||
<div class="email-body">
|
<div class="email-body">
|
||||||
<img src="./images/Confirmed.png" alt="approved Logo" style="width: 30%; height: auto; display: block; margin: 0 auto;" />
|
<img
|
||||||
<h2 style="text-align: center;">Hey, {{ student_name }}</h2>
|
src="https://cdc.iitdh.ac.in/storage/Images/Confirmed.png"
|
||||||
<p style="text-align: center;">
|
alt="approved Logo"
|
||||||
Congratulations, You have been selected for the <b>{{ designation }}</b> at
|
style="
|
||||||
<b>{{ company_name }}</b>.<br></p></div></div>
|
width: 30%;
|
||||||
<div class="email-footer">
|
height: auto;
|
||||||
<p style="margin-bottom: 16px; color: #555555;">Follow us on:</p>
|
display: block;
|
||||||
|
margin: 0 auto;
|
||||||
<a href="https://twitter.com/cdc_iitdh" style="margin-right: 10px; color: #eff7ff">
|
"
|
||||||
<img src="./images/twitter.png" alt="Twitter" style="width: 24px; height: 24px;">
|
/>
|
||||||
</a>
|
<h2 style="text-align: center">Hey, {{ student_name }}</h2>
|
||||||
<a href="https://www.instagram.com/cdc.iitdh/?hl=en" style="margin-right: 10px; color: #eff7ff;">
|
<p style="text-align: center">
|
||||||
<img src="./images/Instagram_icon.png" alt="Instagram" style="width: 24px; height: 24px;">
|
Congratulations, You have been selected for the
|
||||||
</a>
|
<b>{{ designation }}</b> at <b>{{ company_name }}</b>.<br />
|
||||||
<a href="https://www.linkedin.com/company/cdciitdharwad/?originalSubdomain=in">
|
</p>
|
||||||
<img src="./images/LinkedIn_logo_initials.png" alt="LinkedIn" style="width: 24px; height: 24px;">
|
</div>
|
||||||
</a>
|
</div>
|
||||||
<p style="color: #555555;">copy right © 2024 CDC, all rights reserved</p>
|
<div class="email-footer">
|
||||||
|
<p style="margin-bottom: 16px; color: #555555">Follow us on:</p>
|
||||||
</div>
|
|
||||||
</td>
|
<a
|
||||||
</tr>
|
href="https://twitter.com/cdc_iitdh"
|
||||||
</table>
|
style="margin-right: 10px; color: #eff7ff"
|
||||||
</div>
|
>
|
||||||
</body>
|
<img
|
||||||
|
src="https://cdc.iitdh.ac.in/storage/Images/twitter.png"
|
||||||
|
alt="Twitter"
|
||||||
|
style="width: 24px; height: 24px"
|
||||||
|
/>
|
||||||
|
</a>
|
||||||
|
<a
|
||||||
|
href="https://www.instagram.com/cdc.iitdh/?hl=en"
|
||||||
|
style="margin-right: 10px; color: #eff7ff"
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="https://cdc.iitdh.ac.in/storage/Images/Instagram_icon.png"
|
||||||
|
alt="Instagram"
|
||||||
|
style="width: 24px; height: 24px"
|
||||||
|
/>
|
||||||
|
</a>
|
||||||
|
<a
|
||||||
|
href="https://www.linkedin.com/company/cdciitdharwad/?originalSubdomain=in"
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="https://cdc.iitdh.ac.in/storage/Images/LinkedIn_logo_initials.png"
|
||||||
|
alt="LinkedIn"
|
||||||
|
style="width: 24px; height: 24px"
|
||||||
|
/>
|
||||||
|
</a>
|
||||||
|
<p style="color: #555555">
|
||||||
|
copy right © 2024 CDC, all rights reserved
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -1,163 +1,204 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
||||||
<meta name="x-apple-disable-message-reformatting">
|
<meta name="x-apple-disable-message-reformatting" />
|
||||||
<title></title>
|
<title></title>
|
||||||
<!--[if mso]>
|
<!--[if mso]>
|
||||||
<noscript>
|
<noscript>
|
||||||
<xml>
|
<xml>
|
||||||
<o:OfficeDocumentSettings>
|
<o:OfficeDocumentSettings>
|
||||||
<o:PixelsPerInch>96</o:PixelsPerInch>
|
<o:PixelsPerInch>96</o:PixelsPerInch>
|
||||||
</o:OfficeDocumentSettings>
|
</o:OfficeDocumentSettings>
|
||||||
</xml>
|
</xml>
|
||||||
</noscript>
|
</noscript>
|
||||||
<![endif]-->
|
<![endif]-->
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
<link rel="preconnect" href="https://fonts.gstatic.com" />
|
||||||
<link rel="shortcut icon" href="favicon.ico"/>
|
<link rel="shortcut icon" href="favicon.ico" />
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap" rel="stylesheet">
|
<link
|
||||||
|
href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
<style>
|
<style>
|
||||||
body, table, td, div, p, h1 {
|
body,
|
||||||
font-family: 'Roboto', sans-serif;
|
table,
|
||||||
}
|
td,
|
||||||
body {
|
div,
|
||||||
margin: 0;
|
p,
|
||||||
padding: 0;
|
h1 {
|
||||||
background-color: #e1e4e8; /* Outer background color */
|
font-family: "Roboto", sans-serif;
|
||||||
}
|
}
|
||||||
.email-wrapper {
|
body {
|
||||||
padding: 20px;
|
margin: 0;
|
||||||
background-color: #e1e4e8; /* Outer background color */
|
padding: 0;
|
||||||
}
|
background-color: #e1e4e8; /* Outer background color */
|
||||||
.email-container {
|
}
|
||||||
width: 100%;
|
.email-wrapper {
|
||||||
max-width: 600px;
|
padding: 20px;
|
||||||
margin: 0 auto;
|
background-color: #e1e4e8; /* Outer background color */
|
||||||
background-color: #eff7ff; /* Outer box background color */
|
}
|
||||||
border-radius: 8px;
|
.email-container {
|
||||||
overflow: hidden;
|
width: 100%;
|
||||||
}
|
max-width: 600px;
|
||||||
.email-header, .email-footer {
|
margin: 0 auto;
|
||||||
padding: 40px 0;
|
background-color: #eff7ff; /* Outer box background color */
|
||||||
text-align: center;
|
border-radius: 8px;
|
||||||
color: #ffffff;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
.email-header img {
|
.email-header,
|
||||||
width: 150px;
|
.email-footer {
|
||||||
height: auto;
|
padding: 40px 0;
|
||||||
margin-bottom: 20px;
|
text-align: center;
|
||||||
}
|
color: #ffffff;
|
||||||
.email-header h1 {
|
}
|
||||||
margin: 0;
|
.email-header img {
|
||||||
font-size: 24px;
|
width: 150px;
|
||||||
font-weight: 500;
|
height: auto;
|
||||||
}
|
margin-bottom: 20px;
|
||||||
.inner-container {
|
}
|
||||||
background-color: #ffffff; /* Inner box background color */
|
.email-header h1 {
|
||||||
border-radius: 8px;
|
margin: 0;
|
||||||
margin: 0 20px;
|
font-size: 24px;
|
||||||
}
|
font-weight: 500;
|
||||||
.inner-container .email-body {
|
}
|
||||||
padding: 36px 30px;
|
.inner-container {
|
||||||
}
|
background-color: #ffffff; /* Inner box background color */
|
||||||
.inner-container .email-body h2 {
|
border-radius: 8px;
|
||||||
margin-bottom: 24px;
|
margin: 0 20px;
|
||||||
font-size: 24px;
|
}
|
||||||
color: black;
|
.inner-container .email-body {
|
||||||
font-weight: 500;
|
padding: 36px 30px;
|
||||||
}
|
}
|
||||||
.inner-container .email-body p {
|
.inner-container .email-body h2 {
|
||||||
margin-bottom: 16px;
|
margin-bottom: 24px;
|
||||||
font-size: 16px;
|
font-size: 24px;
|
||||||
line-height: 24px;
|
color: black;
|
||||||
color: #555555;
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
|
.inner-container .email-body p {
|
||||||
|
margin-bottom: 16px;
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 24px;
|
||||||
|
color: #555555;
|
||||||
|
}
|
||||||
|
.email-footer {
|
||||||
|
padding: 20px 30px;
|
||||||
|
text-align: center;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
.email-footer p {
|
||||||
|
margin: 0;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 20px;
|
||||||
|
}
|
||||||
|
.button {
|
||||||
|
display: inline-block;
|
||||||
|
padding: 12px 24px;
|
||||||
|
margin: 20px 0;
|
||||||
|
font-size: 16px;
|
||||||
|
color: #ffffff;
|
||||||
|
background-color: #ff7350;
|
||||||
|
text-decoration: none;
|
||||||
|
border-radius: 5px;
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
@media only screen and (max-width: 600px) {
|
||||||
|
.inner-container .email-body,
|
||||||
.email-footer {
|
.email-footer {
|
||||||
padding: 20px 30px;
|
padding: 20px !important;
|
||||||
text-align: center;
|
|
||||||
color: #ffffff;
|
|
||||||
}
|
|
||||||
.email-footer p {
|
|
||||||
margin: 0;
|
|
||||||
font-size: 14px;
|
|
||||||
line-height: 20px;
|
|
||||||
}
|
|
||||||
.button {
|
|
||||||
display: inline-block;
|
|
||||||
padding: 12px 24px;
|
|
||||||
margin: 20px 0;
|
|
||||||
font-size: 16px;
|
|
||||||
color: #ffffff;
|
|
||||||
background-color: #ff7350;
|
|
||||||
text-decoration: none;
|
|
||||||
border-radius: 5px;
|
|
||||||
font-weight: 500;
|
|
||||||
}
|
|
||||||
@media only screen and (max-width: 600px) {
|
|
||||||
.inner-container .email-body, .email-footer {
|
|
||||||
padding: 20px !important;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="email-wrapper">
|
<div class="email-wrapper">
|
||||||
<table role="presentation" class="email-container">
|
<table role="presentation" class="email-container">
|
||||||
<tr>
|
<tr>
|
||||||
<td >
|
<td>
|
||||||
<div class="email-header">
|
<div class="email-header">
|
||||||
<img src="./images/CDC-Logo.png" alt="CDC Logo" style="width: 35%; height: auto; display: block; margin: 0 auto;" />
|
<img
|
||||||
|
src="https://cdc.iitdh.ac.in/storage/Images/CDC-Logo.png"
|
||||||
|
alt="CDC Logo"
|
||||||
|
style="width: 35%; height: auto; display: block; margin: 0 auto"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div class="inner-container">
|
<div class="inner-container">
|
||||||
<div class="email-body">
|
<div class="email-body">
|
||||||
<img src="./images/message.png" alt="verify Logo" style="width: 35%; height: auto; display: block; margin: 0 auto;" />
|
<img
|
||||||
<h2 style="text-align: center;">Hello, {{ name }}</h2>
|
src="https://cdc.iitdh.ac.in/storage/Images/message.png"
|
||||||
<p style="text-align: center;">
|
alt="verify Logo"
|
||||||
We have received your application for a <b>{{ application_type }}</b> offer at
|
style="
|
||||||
<b>
|
width: 35%;
|
||||||
{{ company_name }}</b>.
|
height: auto;
|
||||||
{% if additional_info_items %}
|
display: block;
|
||||||
We received these additional details
|
margin: 0 auto;
|
||||||
<br>
|
"
|
||||||
|
/>
|
||||||
|
<h2 style="text-align: center">Hello, {{ name }}</h2>
|
||||||
|
<p style="text-align: center">
|
||||||
|
We have received your application for a
|
||||||
|
<b>{{ application_type }}</b> offer at
|
||||||
|
<b> {{ company_name }}</b>. {% if additional_info_items %} We
|
||||||
|
received these additional details
|
||||||
|
<br />
|
||||||
|
|
||||||
<!-- <table style="border:solid 1px; margin: auto; text-align: center;width: 80%;
|
<!-- <table style="border:solid 1px; margin: auto; text-align: center;width: 80%;
|
||||||
border-radius:15px; background-color: #e0e3ee"> -->
|
border-radius:15px; background-color: #e0e3ee"> -->
|
||||||
|
|
||||||
{% for i,j in additional_info.items %}
|
{% for i,j in additional_info.items %}
|
||||||
|
|
||||||
<!-- <tr> -->
|
<!-- <tr> -->
|
||||||
<!-- <td style="padding:8px 10px;color:#153643; ">{{ i }}:</td> -->
|
<!-- <td style="padding:8px 10px;color:#153643; ">{{ i }}:</td> -->
|
||||||
<!-- <td style="padding:8px 10px;color:#153643;">{{ j }}</td> -->
|
<!-- <td style="padding:8px 10px;color:#153643;">{{ j }}</td> -->
|
||||||
<!-- </tr> -->
|
<!-- </tr> -->
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
<!-- </table> -->
|
<!-- </table> -->
|
||||||
{% endif %}
|
{% endif %} We will keep you informed with the updates. If you
|
||||||
We will keep you informed with the updates. If you have any queries, please
|
have any queries, please feel to write to
|
||||||
feel to
|
<nobr><u>cdc.support@iitdh.ac.in</u></nobr>
|
||||||
write to
|
</p>
|
||||||
<nobr><u>cdc.support@iitdh.ac.in</u></nobr>
|
</div>
|
||||||
|
</div>
|
||||||
</p></div></div>
|
<div class="email-footer">
|
||||||
<div class="email-footer">
|
<p style="margin-bottom: 16px; color: #555555">Follow us on:</p>
|
||||||
<p style="margin-bottom: 16px; color: #555555;">Follow us on:</p>
|
|
||||||
|
<a
|
||||||
<a href="https://twitter.com/cdc_iitdh" style="margin-right: 10px; color: #eff7ff">
|
href="https://twitter.com/cdc_iitdh"
|
||||||
<img src="./images/twitter.png" alt="Twitter" style="width: 24px; height: 24px;">
|
style="margin-right: 10px; color: #eff7ff"
|
||||||
</a>
|
>
|
||||||
<a href="https://www.instagram.com/cdc.iitdh/?hl=en" style="margin-right: 10px; color: #eff7ff;">
|
<img
|
||||||
<img src="./images/Instagram_icon.png" alt="Instagram" style="width: 24px; height: 24px;">
|
src="https://cdc.iitdh.ac.in/storage/Images/twitter.png"
|
||||||
</a>
|
alt="Twitter"
|
||||||
<a href="https://www.linkedin.com/company/cdciitdharwad/?originalSubdomain=in">
|
style="width: 24px; height: 24px"
|
||||||
<img src="./images/LinkedIn_logo_initials.png" alt="LinkedIn" style="width: 24px; height: 24px;">
|
/>
|
||||||
</a>
|
</a>
|
||||||
<p style="color: #555555;">copy right © 2024 CDC, all rights reserved</p>
|
<a
|
||||||
|
href="https://www.instagram.com/cdc.iitdh/?hl=en"
|
||||||
</div>
|
style="margin-right: 10px; color: #eff7ff"
|
||||||
</td>
|
>
|
||||||
</tr>
|
<img
|
||||||
</table>
|
src="https://cdc.iitdh.ac.in/storage/Images/Instagram_icon.png"
|
||||||
</div>
|
alt="Instagram"
|
||||||
</body>
|
style="width: 24px; height: 24px"
|
||||||
</html>
|
/>
|
||||||
|
</a>
|
||||||
|
<a
|
||||||
|
href="https://www.linkedin.com/company/cdciitdharwad/?originalSubdomain=in"
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="https://cdc.iitdh.ac.in/storage/Images/LinkedIn_logo_initials.png"
|
||||||
|
alt="LinkedIn"
|
||||||
|
style="width: 24px; height: 24px"
|
||||||
|
/>
|
||||||
|
</a>
|
||||||
|
<p style="color: #555555">
|
||||||
|
copy right © 2024 CDC, all rights reserved
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
|
@ -1,123 +1,146 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
||||||
<meta name="x-apple-disable-message-reformatting">
|
<meta name="x-apple-disable-message-reformatting" />
|
||||||
<title></title>
|
<title></title>
|
||||||
<!--[if mso]>
|
<!--[if mso]>
|
||||||
<noscript>
|
<noscript>
|
||||||
<xml>
|
<xml>
|
||||||
<o:OfficeDocumentSettings>
|
<o:OfficeDocumentSettings>
|
||||||
<o:PixelsPerInch>96</o:PixelsPerInch>
|
<o:PixelsPerInch>96</o:PixelsPerInch>
|
||||||
</o:OfficeDocumentSettings>
|
</o:OfficeDocumentSettings>
|
||||||
</xml>
|
</xml>
|
||||||
</noscript>
|
</noscript>
|
||||||
<![endif]-->
|
<![endif]-->
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
<link rel="preconnect" href="https://fonts.gstatic.com" />
|
||||||
<link rel="shortcut icon" href="favicon.ico"/>
|
<link rel="shortcut icon" href="favicon.ico" />
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap" rel="stylesheet">
|
<link
|
||||||
|
href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
<style>
|
<style>
|
||||||
body, table, td, div, p, h1 {
|
body,
|
||||||
font-family: 'Roboto', sans-serif;
|
table,
|
||||||
}
|
td,
|
||||||
body {
|
div,
|
||||||
margin: 0;
|
p,
|
||||||
padding: 0;
|
h1 {
|
||||||
background-color: #e1e4e8; /* Outer background color */
|
font-family: "Roboto", sans-serif;
|
||||||
}
|
}
|
||||||
.email-wrapper {
|
body {
|
||||||
padding: 20px;
|
margin: 0;
|
||||||
background-color: #e1e4e8; /* Outer background color */
|
padding: 0;
|
||||||
}
|
background-color: #e1e4e8; /* Outer background color */
|
||||||
.email-container {
|
}
|
||||||
width: 100%;
|
.email-wrapper {
|
||||||
max-width: 600px;
|
padding: 20px;
|
||||||
margin: 0 auto;
|
background-color: #e1e4e8; /* Outer background color */
|
||||||
background-color: #eff7ff; /* Outer box background color */
|
}
|
||||||
border-radius: 8px;
|
.email-container {
|
||||||
overflow: hidden;
|
width: 100%;
|
||||||
}
|
max-width: 600px;
|
||||||
.email-header, .email-footer {
|
margin: 0 auto;
|
||||||
padding: 40px 0;
|
background-color: #eff7ff; /* Outer box background color */
|
||||||
text-align: center;
|
border-radius: 8px;
|
||||||
color: #ffffff;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
.email-header img {
|
.email-header,
|
||||||
width: 150px;
|
.email-footer {
|
||||||
height: auto;
|
padding: 40px 0;
|
||||||
margin-bottom: 20px;
|
text-align: center;
|
||||||
}
|
color: #ffffff;
|
||||||
.email-header h1 {
|
}
|
||||||
margin: 0;
|
.email-header img {
|
||||||
font-size: 24px;
|
width: 150px;
|
||||||
font-weight: 500;
|
height: auto;
|
||||||
}
|
margin-bottom: 20px;
|
||||||
.inner-container {
|
}
|
||||||
background-color: #ffffff; /* Inner box background color */
|
.email-header h1 {
|
||||||
border-radius: 8px;
|
margin: 0;
|
||||||
margin: 0 20px;
|
font-size: 24px;
|
||||||
}
|
font-weight: 500;
|
||||||
.inner-container .email-body {
|
}
|
||||||
padding: 36px 30px;
|
.inner-container {
|
||||||
}
|
background-color: #ffffff; /* Inner box background color */
|
||||||
.inner-container .email-body h2 {
|
border-radius: 8px;
|
||||||
margin-bottom: 24px;
|
margin: 0 20px;
|
||||||
font-size: 24px;
|
}
|
||||||
color: black;
|
.inner-container .email-body {
|
||||||
font-weight: 500;
|
padding: 36px 30px;
|
||||||
}
|
}
|
||||||
.inner-container .email-body p {
|
.inner-container .email-body h2 {
|
||||||
margin-bottom: 16px;
|
margin-bottom: 24px;
|
||||||
font-size: 16px;
|
font-size: 24px;
|
||||||
line-height: 24px;
|
color: black;
|
||||||
color: #555555;
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
|
.inner-container .email-body p {
|
||||||
|
margin-bottom: 16px;
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 24px;
|
||||||
|
color: #555555;
|
||||||
|
}
|
||||||
|
.email-footer {
|
||||||
|
padding: 20px 30px;
|
||||||
|
text-align: center;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
.email-footer p {
|
||||||
|
margin: 0;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 20px;
|
||||||
|
}
|
||||||
|
.button {
|
||||||
|
display: inline-block;
|
||||||
|
padding: 12px 24px;
|
||||||
|
margin: 20px 0;
|
||||||
|
font-size: 16px;
|
||||||
|
color: #ffffff;
|
||||||
|
background-color: #ff7350;
|
||||||
|
text-decoration: none;
|
||||||
|
border-radius: 5px;
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
@media only screen and (max-width: 600px) {
|
||||||
|
.inner-container .email-body,
|
||||||
.email-footer {
|
.email-footer {
|
||||||
padding: 20px 30px;
|
padding: 20px !important;
|
||||||
text-align: center;
|
|
||||||
color: #ffffff;
|
|
||||||
}
|
|
||||||
.email-footer p {
|
|
||||||
margin: 0;
|
|
||||||
font-size: 14px;
|
|
||||||
line-height: 20px;
|
|
||||||
}
|
|
||||||
.button {
|
|
||||||
display: inline-block;
|
|
||||||
padding: 12px 24px;
|
|
||||||
margin: 20px 0;
|
|
||||||
font-size: 16px;
|
|
||||||
color: #ffffff;
|
|
||||||
background-color: #ff7350;
|
|
||||||
text-decoration: none;
|
|
||||||
border-radius: 5px;
|
|
||||||
font-weight: 500;
|
|
||||||
}
|
|
||||||
@media only screen and (max-width: 600px) {
|
|
||||||
.inner-container .email-body, .email-footer {
|
|
||||||
padding: 20px !important;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="email-wrapper">
|
<div class="email-wrapper">
|
||||||
<table role="presentation" class="email-container">
|
<table role="presentation" class="email-container">
|
||||||
<tr>
|
<tr>
|
||||||
<td >
|
<td>
|
||||||
<div class="email-header">
|
<div class="email-header">
|
||||||
<img src="./images/CDC-Logo.png" alt="CDC Logo" style="width: 35%; height: auto; display: block; margin: 0 auto;" />
|
<img
|
||||||
|
src="https://cdc.iitdh.ac.in/storage/Images/CDC-Logo.png"
|
||||||
|
alt="CDC Logo"
|
||||||
|
style="width: 35%; height: auto; display: block; margin: 0 auto"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div class="inner-container">
|
<div class="inner-container">
|
||||||
<div class="email-body">
|
<div class="email-body">
|
||||||
<img src="./images/mobile.png" alt="verify Logo" style="width: 35%; height: auto; display: block; margin: 0 auto;" />
|
<img
|
||||||
<h2 style="text-align: center;">Hello, {{ name }}</h2>
|
src="https://cdc.iitdh.ac.in/storage/Images/mobile.png"
|
||||||
<p style="text-align: center;">
|
alt="verify Logo"
|
||||||
We have received some update in your application for a <b>{{ application_type }}</b> offer at
|
style="
|
||||||
<b>
|
width: 35%;
|
||||||
{{ company_name }}</b>.
|
height: auto;
|
||||||
<!-- <table style="border:solid 1px; margin: auto; text-align: center;width: 80%;
|
display: block;
|
||||||
|
margin: 0 auto;
|
||||||
|
"
|
||||||
|
/>
|
||||||
|
<h2 style="text-align: center">Hello, {{ name }}</h2>
|
||||||
|
<p style="text-align: center">
|
||||||
|
We have received some update in your application for a
|
||||||
|
<b>{{ application_type }}</b> offer at
|
||||||
|
<b> {{ company_name }}</b>.
|
||||||
|
<!-- <table style="border:solid 1px; margin: auto; text-align: center;width: 80%;
|
||||||
border-radius:15px; background-color: #e0e3ee">
|
border-radius:15px; background-color: #e0e3ee">
|
||||||
<tr>
|
<tr>
|
||||||
<td style="padding:8px 10px;color:#153643; "> resume:</td>
|
<td style="padding:8px 10px;color:#153643; "> resume:</td>
|
||||||
|
@ -125,45 +148,65 @@
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
-->
|
-->
|
||||||
<!-- {% if additional_info_items %} -->
|
<!-- {% if additional_info_items %} -->
|
||||||
<!-- We received these additional details -->
|
<!-- We received these additional details -->
|
||||||
<!-- <br> -->
|
<!-- <br> -->
|
||||||
<!-- <p style="text-align: center;"> -->
|
<!-- <p style="text-align: center;"> -->
|
||||||
<!-- {% for i,j in additional_info_items.items %} -->
|
<!-- {% for i,j in additional_info_items.items %} -->
|
||||||
|
|
||||||
<!-- <tr>
|
<!-- <tr>
|
||||||
<td style="padding:8px 10px;color:#153643; ">{{ i }}:</td>
|
<td style="padding:8px 10px;color:#153643; ">{{ i }}:</td>
|
||||||
<td style="padding:8px 10px;color:#153643;">{{ j }}</td>
|
<td style="padding:8px 10px;color:#153643;">{{ j }}</td>
|
||||||
</tr> -->
|
</tr> -->
|
||||||
<!-- {% endfor %} -->
|
<!-- {% endfor %} -->
|
||||||
<!-- </table> -->
|
<!-- </table> -->
|
||||||
<!-- {% endif %} -->
|
<!-- {% endif %} -->
|
||||||
|
|
||||||
We will keep you informed with the updates. If you have any queries, please
|
We will keep you informed with the updates. If you have any
|
||||||
feel to
|
queries, please feel to write to
|
||||||
write to
|
<nobr><u>cdc.support@iitdh.ac.in</u></nobr>
|
||||||
<nobr><u>cdc.support@iitdh.ac.in</u></nobr>
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</p></div></div>
|
<div class="email-footer">
|
||||||
<div class="email-footer">
|
<p style="margin-bottom: 16px; color: #555555">Follow us on:</p>
|
||||||
<p style="margin-bottom: 16px; color: #555555;">Follow us on:</p>
|
|
||||||
|
<a
|
||||||
<a href="https://twitter.com/cdc_iitdh" style="margin-right: 10px; color: #eff7ff">
|
href="https://twitter.com/cdc_iitdh"
|
||||||
<img src="./images/twitter.png" alt="Twitter" style="width: 24px; height: 24px;">
|
style="margin-right: 10px; color: #eff7ff"
|
||||||
</a>
|
>
|
||||||
<a href="https://www.instagram.com/cdc.iitdh/?hl=en" style="margin-right: 10px; color: #eff7ff;">
|
<img
|
||||||
<img src="./images/Instagram_icon.png" alt="Instagram" style="width: 24px; height: 24px;">
|
src="https://cdc.iitdh.ac.in/storage/Images/twitter.png"
|
||||||
</a>
|
alt="Twitter"
|
||||||
<a href="https://www.linkedin.com/company/cdciitdharwad/?originalSubdomain=in">
|
style="width: 24px; height: 24px"
|
||||||
<img src="./images/LinkedIn_logo_initials.png" alt="LinkedIn" style="width: 24px; height: 24px;">
|
/>
|
||||||
</a>
|
</a>
|
||||||
<p style="color: #555555;">copy right © 2024 CDC, all rights reserved</p>
|
<a
|
||||||
|
href="https://www.instagram.com/cdc.iitdh/?hl=en"
|
||||||
</div>
|
style="margin-right: 10px; color: #eff7ff"
|
||||||
</td>
|
>
|
||||||
</tr>
|
<img
|
||||||
</table>
|
src="https://cdc.iitdh.ac.in/storage/Images/Instagram_icon.png"
|
||||||
</div>
|
alt="Instagram"
|
||||||
</body>
|
style="width: 24px; height: 24px"
|
||||||
</html>
|
/>
|
||||||
|
</a>
|
||||||
|
<a
|
||||||
|
href="https://www.linkedin.com/company/cdciitdharwad/?originalSubdomain=in"
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="https://cdc.iitdh.ac.in/storage/Images/LinkedIn_logo_initials.png"
|
||||||
|
alt="LinkedIn"
|
||||||
|
style="width: 24px; height: 24px"
|
||||||
|
/>
|
||||||
|
</a>
|
||||||
|
<p style="color: #555555">
|
||||||
|
copy right © 2024 CDC, all rights reserved
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
|
@ -107,11 +107,11 @@
|
||||||
<tr>
|
<tr>
|
||||||
<td >
|
<td >
|
||||||
<div class="email-header">
|
<div class="email-header">
|
||||||
<img src="./images/CDC-Logo.png" alt="CDC Logo" style="width: 35%; height: auto; display: block; margin: 0 auto;" />
|
<img src="https://cdc.iitdh.ac.in/storage/Images/CDC-Logo.png" alt="CDC Logo" style="width: 35%; height: auto; display: block; margin: 0 auto;" />
|
||||||
</div>
|
</div>
|
||||||
<div class="inner-container">
|
<div class="inner-container">
|
||||||
<div class="email-body">
|
<div class="email-body">
|
||||||
<img src="./images/tracking.png" alt="verify Logo" style="width: 35%; height: auto; display: block; margin: 0 auto;" />
|
<img src="https://cdc.iitdh.ac.in/storage/Images/tracking.png" alt="verify Logo" style="width: 35%; height: auto; display: block; margin: 0 auto;" />
|
||||||
<h2 style="text-align: center;"
|
<h2 style="text-align: center;"
|
||||||
>Hello, {{ name }}</h1>
|
>Hello, {{ name }}</h1>
|
||||||
<p style="text-align:center;">
|
<p style="text-align:center;">
|
||||||
|
@ -143,13 +143,13 @@
|
||||||
<p style="margin-bottom: 16px; color: #555555;">Follow us on:</p>
|
<p style="margin-bottom: 16px; color: #555555;">Follow us on:</p>
|
||||||
|
|
||||||
<a href="https://twitter.com/cdc_iitdh" style="margin-right: 10px; color: #eff7ff">
|
<a href="https://twitter.com/cdc_iitdh" style="margin-right: 10px; color: #eff7ff">
|
||||||
<img src="./images/twitter.png" alt="Twitter" style="width: 24px; height: 24px;">
|
<img src="https://cdc.iitdh.ac.in/storage/Images/twitter.png" alt="Twitter" style="width: 24px; height: 24px;">
|
||||||
</a>
|
</a>
|
||||||
<a href="https://www.instagram.com/cdc.iitdh/?hl=en" style="margin-right: 10px; color: #eff7ff;">
|
<a href="https://www.instagram.com/cdc.iitdh/?hl=en" style="margin-right: 10px; color: #eff7ff;">
|
||||||
<img src="./images/Instagram_icon.png" alt="Instagram" style="width: 24px; height: 24px;">
|
<img src="https://cdc.iitdh.ac.in/storage/Images/Instagram_icon.png" alt="Instagram" style="width: 24px; height: 24px;">
|
||||||
</a>
|
</a>
|
||||||
<a href="https://www.linkedin.com/company/cdciitdharwad/?originalSubdomain=in">
|
<a href="https://www.linkedin.com/company/cdciitdharwad/?originalSubdomain=in">
|
||||||
<img src="./images/LinkedIn_logo_initials.png" alt="LinkedIn" style="width: 24px; height: 24px;">
|
<img src="https://cdc.iitdh.ac.in/storage/Images/LinkedIn_logo_initials.png" alt="LinkedIn" style="width: 24px; height: 24px;">
|
||||||
</a>
|
</a>
|
||||||
<p style="color: #555555;">copy right © 2024 CDC, all rights reserved</p>
|
<p style="color: #555555;">copy right © 2024 CDC, all rights reserved</p>
|
||||||
|
|
||||||
|
|
|
@ -107,11 +107,11 @@
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<div class="email-header">
|
<div class="email-header">
|
||||||
<img src="./images/CDC-Logo.png" alt="CDC Logo" style="width: 35%; height: auto; display: block; margin: 0 auto;" />
|
<img src="https://cdc.iitdh.ac.in/storage/Images/CDC-Logo.png" alt="CDC Logo" style="width: 35%; height: auto; display: block; margin: 0 auto;" />
|
||||||
</div>
|
</div>
|
||||||
<div class="inner-container">
|
<div class="inner-container">
|
||||||
<div class="email-body">
|
<div class="email-body">
|
||||||
<img src="./images/reminder.png" alt="verify Logo" style="width: 25%; height: auto; display: block; margin: 0 auto;" />
|
<img src="https://cdc.iitdh.ac.in/storage/Images/reminder.png" alt="verify Logo" style="width: 25%; height: auto; display: block; margin: 0 auto;" />
|
||||||
<h4 style="text-align: center;">{{ opening_type }} Opportunity at {{ company_name }}</h3>
|
<h4 style="text-align: center;">{{ opening_type }} Opportunity at {{ company_name }}</h3>
|
||||||
<p style="text-align: center;">
|
<p style="text-align: center;">
|
||||||
Gentle reminder to fill out the application form.
|
Gentle reminder to fill out the application form.
|
||||||
|
@ -125,13 +125,13 @@
|
||||||
<p style="margin-bottom: 16px; color: #555555;">Follow us on:</p>
|
<p style="margin-bottom: 16px; color: #555555;">Follow us on:</p>
|
||||||
|
|
||||||
<a href="https://twitter.com/cdc_iitdh" style="margin-right: 10px; color: #eff7ff">
|
<a href="https://twitter.com/cdc_iitdh" style="margin-right: 10px; color: #eff7ff">
|
||||||
<img src="./images/twitter.png" alt="Twitter" style="width: 24px; height: 24px;">
|
<img src="https://cdc.iitdh.ac.in/storage/Images/twitter.png" alt="Twitter" style="width: 24px; height: 24px;">
|
||||||
</a>
|
</a>
|
||||||
<a href="https://www.instagram.com/cdc.iitdh/?hl=en" style="margin-right: 10px; color: #eff7ff;">
|
<a href="https://www.instagram.com/cdc.iitdh/?hl=en" style="margin-right: 10px; color: #eff7ff;">
|
||||||
<img src="./images/Instagram_icon.png" alt="Instagram" style="width: 24px; height: 24px;">
|
<img src="https://cdc.iitdh.ac.in/storage/Images/Instagram_icon.png" alt="Instagram" style="width: 24px; height: 24px;">
|
||||||
</a>
|
</a>
|
||||||
<a href="https://www.linkedin.com/company/cdciitdharwad/?originalSubdomain=in">
|
<a href="https://www.linkedin.com/company/cdciitdharwad/?originalSubdomain=in">
|
||||||
<img src="./images/LinkedIn_logo_initials.png" alt="LinkedIn" style="width: 24px; height: 24px;">
|
<img src="https://cdc.iitdh.ac.in/storage/Images/LinkedIn_logo_initials.png" alt="LinkedIn" style="width: 24px; height: 24px;">
|
||||||
</a>
|
</a>
|
||||||
<p style="color: #555555;">copy right © 2024 CDC, all rights reserved</p>
|
<p style="color: #555555;">copy right © 2024 CDC, all rights reserved</p>
|
||||||
|
|
||||||
|
|