Compare commits

..

No commits in common. "18f509e6a4da245b0f85c932cf9d7b52782d16cc" and "48b59248e658defa8b4ef1d8341b845a38275a5c" have entirely different histories.

28 changed files with 979 additions and 1328 deletions

View File

@ -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,NUMBER_OF_EMPLOYEES,BACKLOG_ELIGIBLE,PWD_ELIGIBLE,CPI,EXPECTED_NO_OF_OFFERS]) 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])
def addPlacement(request): def addPlacement(request):
logger.info("JNF filled by " + str(request.data['email'])) logger.info("JNF filled by " + str(request.data['email']))
@ -139,17 +139,12 @@ 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 or data[COMPANY_TURNOVER] == '': elif data[COMPANY_TURNOVER] is None:
opening.company_turnover = None opening.company_turnover = None
else: else:
# Handle the case where the data is not a valid number or None/empty raise ValueError('Company Turnover must be an integer')
# 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():
@ -232,14 +227,8 @@ 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()
establishment_date_str = data.get('ESTABLISHMENT_DATE', '') opening.establishment_date = datetime.datetime.strptime(data[ESTABLISHMENT_DATE],
if establishment_date_str: '%d-%m-%Y').date() # newly added field
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,]
@ -466,18 +455,12 @@ 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()
establishment_date_str = data.get('ESTABLISHMENT_DATE', '') internship.establishment_date = datetime.datetime.strptime(data[ESTABLISHMENT_DATE], '%d-%m-%Y').date() # newly added field
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):
@ -546,12 +529,10 @@ 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 or data[COMPANY_TURNOVER] == '': elif data[COMPANY_TURNOVER] is None:
internship.company_turnover = None internship.company_turnover = None
else: else:
# Handle the case where the data is not a valid number or None/empty raise ValueError('Company Turnover must be an integer')
# 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])

View File

@ -10,13 +10,13 @@ BRANCH_CHOICES = [
['EP', 'EP'], ['EP', 'EP'],
['CIVIL', 'CIVIL'], ['CIVIL', 'CIVIL'],
['CHEMICAL', 'CHEMICAL'], ['CHEMICAL', 'CHEMICAL'],
['BSMS', 'BSMS'],
] ]
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,14 +25,13 @@ BRANCHES = [
"EP", "EP",
"CIVIL", "CIVIL",
"CHEMICAL", "CHEMICAL",
"MNC", "BSMS",
] ]
ELIGIBLE =[ ELIGIBLE =[
"Btech", "Btech",
"MS", "MS",
"MTech", "MTech",
"PHD", "PHD",
"BSMS",
] ]
BATCHES = [ #change it accordingly BATCHES = [ #change it accordingly
"2023", "2023",

View File

@ -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=True, default=None, null=True) # newly added field company_turnover = models.IntegerField(blank=False, 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=True, default=None, null=True) # newly added field number_of_employees = models.IntegerField(blank=False, 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,

View File

@ -1,24 +1,16 @@
<!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 <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap" rel="stylesheet">
href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap"
rel="stylesheet"
/>
<style> <style>
body, body, table, td, div, p, h1 {
table, font-family: 'Roboto', sans-serif;
td,
div,
p,
h1 {
font-family: "Roboto", sans-serif;
} }
body { body {
margin: 0; margin: 0;
@ -37,8 +29,7 @@
border-radius: 8px; border-radius: 8px;
overflow: hidden; overflow: hidden;
} }
.email-header, .email-header, .email-footer {
.email-footer {
padding: 40px 0; padding: 40px 0;
text-align: center; text-align: center;
color: #ffffff; color: #ffffff;
@ -95,8 +86,7 @@
font-weight: 500; font-weight: 500;
} }
@media only screen and (max-width: 600px) { @media only screen and (max-width: 600px) {
.inner-container .email-body, .inner-container .email-body, .email-footer {
.email-footer {
padding: 20px !important; padding: 20px !important;
} }
} }
@ -108,86 +98,37 @@
<tr> <tr>
<td> <td>
<div class="email-header"> <div class="email-header">
<img <img src="./images/CDC-Logo.png" alt="CDC Logo" style="width: 35%; height: auto; display: block; margin: 0 auto;" />
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="https://cdc.iitdh.ac.in/storage/Images/Approved.png" <img src="./images/Approved.png" alt="verify Logo" style="width: 35%; height: auto; display: block; margin: 0 auto;" />
alt="verify Logo" <h2 style="text-align: center;">Verification Required</h2>
style=" <p style="text-align: center;">We have received your <strong>{{opening_type}}</strong> Notification for <strong>{{designation}}</strong>.
width: 35%; Please verify your email by clicking the button below:</p>
height: auto; <p style="text-align: center;">
display: block; <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>
margin: 0 auto;
"
/>
<h2 style="text-align: center">Verification Required</h2>
<p style="text-align: center">
We have received your
<strong>{{opening_type}}</strong> Notification for
<strong>{{designation}}</strong>. Please verify your email by
clicking the button below:
</p>
<p style="text-align: center">
<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
>
</p> </p>
</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 <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"
>
<img
src="https://cdc.iitdh.ac.in/storage/Images/twitter.png"
alt="Twitter"
style="width: 24px; height: 24px"
/>
</a> </a>
<a <a href="https://www.instagram.com/cdc.iitdh/?hl=en" style="margin-right: 10px; color: #eff7ff;">
href="https://www.instagram.com/cdc.iitdh/?hl=en" <img src="./images/Instagram_icon.png" alt="Instagram" style="width: 24px; height: 24px;">
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>
<a <a href="https://www.linkedin.com/company/cdciitdharwad/?originalSubdomain=in">
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"> <p style="color: #555555;">copy right &copy; 2024 CDC, all rights reserved</p>
copy right &copy; 2024 CDC, all rights reserved
</p>
</div> </div>
</td> </td>
</tr> </tr>
</table> </table>

View File

@ -118,12 +118,12 @@
<div class="email-container"> <div class="email-container">
<div class="email-header"> <div class="email-header">
<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;" /> <img src="./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="https://cdc.iitdh.ac.in/storage/Images/email_2058176.png" alt="Notification Logo" style="width: 20%; height: auto; display: block; margin: 0 auto;" /> <img src="./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="https://cdc.iitdh.ac.in/storage/Images/twitter.png" alt="Twitter"> <img src="./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="https://cdc.iitdh.ac.in/storage/Images/Instagram_icon.png" alt="Instagram"> <img src="./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="https://cdc.iitdh.ac.in/storage/Images/LinkedIn_logo_initials.png" alt="LinkedIn"> <img src="./images/LinkedIn_logo_initials.png" alt="LinkedIn">
</a> </a>
</div> </div>
<p style="color: #555555;">&copy; 2024 CDC, all rights reserved</p> <p style="color: #555555;">&copy; 2024 CDC, all rights reserved</p>

View File

@ -1,9 +1,9 @@
<!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>
@ -14,20 +14,12 @@
</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 <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap" rel="stylesheet">
href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap"
rel="stylesheet"
/>
<style> <style>
body, body, table, td, div, h1, p {
table, font-family: 'Roboto', sans-serif;
td,
div,
h1,
p {
font-family: "Roboto", sans-serif;
} }
body { body {
@ -52,8 +44,8 @@
overflow: hidden; overflow: hidden;
} }
.email-header, .email-header, .email-footer {
.email-footer {
padding: 40px 0; padding: 40px 0;
text-align: center; text-align: center;
} }
@ -107,8 +99,7 @@
line-height: 20px; line-height: 20px;
} }
@media only screen and (max-width: 600px) { @media only screen and (max-width: 600px) {
.inner-container .email-body, .inner-container .email-body, .email-footer {
.email-footer {
padding: 20px !important; padding: 20px !important;
} }
} }
@ -120,35 +111,15 @@
<tr> <tr>
<td> <td>
<div class="email-header"> <div class="email-header">
<img <img src="./images/CDC-Logo.png" alt="CDC Logo" style="width: 35%; height: auto; display: block; margin: 0 auto;" />
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="https://cdc.iitdh.ac.in/storage/Images/Confirmed.png" <img src="./images/Confirmed.png" alt="verify Logo" style="width: 30%; height: auto; display: block; margin: 0 auto;" />
alt="verify Logo" <h2 style="text-align: center;">Thank You For Filling The Form</h2>
style=" <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>.
width: 30%; 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>
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"> <!-- <table id="details_table">
{% for key, value in data.items %} {% for key, value in data.items %}
<tr> <tr>
@ -170,40 +141,19 @@
</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 <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"
>
<img
src="https://cdc.iitdh.ac.in/storage/Images/twitter.png"
alt="Twitter"
style="width: 24px; height: 24px"
/>
</a> </a>
<a <a href="https://www.instagram.com/cdc.iitdh/?hl=en" style="margin-right: 10px; color: #eff7ff;">
href="https://www.instagram.com/cdc.iitdh/?hl=en" <img src="./images/Instagram_icon.png" alt="Instagram" style="width: 24px; height: 24px;">
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>
<a <a href="https://www.linkedin.com/company/cdciitdharwad/?originalSubdomain=in">
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"> <p style="color: #555555;">copy right &copy; 2024 CDC, all rights reserved</p>
copy right &copy; 2024 CDC, all rights reserved
</p>
</div> </div>
</td> </td>
</tr> </tr>

Binary file not shown.

After

Width:  |  Height:  |  Size: 186 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 164 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 96 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

View File

@ -107,11 +107,11 @@
<td> <td>
<div class="email-header"> <div class="email-header">
<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;" /> <img src="./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="https://cdc.iitdh.ac.in/storage/Images/notification.png" alt="verify Logo" style="width: 30%; height: auto; display: block; margin: 0 auto;" /> <img src="./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="https://cdc.iitdh.ac.in/storage/Images/twitter.png" alt="Twitter" style="width: 24px; height: 24px;"> <img src="./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="https://cdc.iitdh.ac.in/storage/Images/Instagram_icon.png" alt="Instagram" style="width: 24px; height: 24px;"> <img src="./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="https://cdc.iitdh.ac.in/storage/Images/LinkedIn_logo_initials.png" alt="LinkedIn" 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 &copy; 2024 CDC, all rights reserved</p> <p style="color: #555555;">copy right &copy; 2024 CDC, all rights reserved</p>

View File

@ -1,9 +1,9 @@
<!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>
@ -14,20 +14,12 @@
</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 <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap" rel="stylesheet">
href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap"
rel="stylesheet"
/>
<style> <style>
body, body, table, td, div, p, h1 {
table, font-family: 'Roboto', sans-serif;
td,
div,
p,
h1 {
font-family: "Roboto", sans-serif;
} }
body { body {
margin: 0; margin: 0;
@ -46,8 +38,7 @@
border-radius: 8px; border-radius: 8px;
overflow: hidden; overflow: hidden;
} }
.email-header, .email-header, .email-footer {
.email-footer {
padding: 40px 0; padding: 40px 0;
text-align: center; text-align: center;
color: #ffffff; color: #ffffff;
@ -104,8 +95,7 @@
font-weight: 500; font-weight: 500;
} }
@media only screen and (max-width: 600px) { @media only screen and (max-width: 600px) {
.inner-container .email-body, .inner-container .email-body, .email-footer {
.email-footer {
padding: 20px !important; padding: 20px !important;
} }
} }
@ -117,31 +107,19 @@
<tr> <tr>
<td > <td >
<div class="email-header"> <div class="email-header">
<img <img src="./images/CDC-Logo.png" alt="CDC Logo" style="width: 35%; height: auto; display: block; margin: 0 auto;" />
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 <img src="./images/tracking.png" alt="verify Logo" style="width: 35%; height: auto; display: block; margin: 0 auto;" />
src="https://cdc.iitdh.ac.in/storage/Images/tracking.png" <h1 style="text-align: center;">Hello, Folks</h1>
alt="verify Logo" <p style="text-align: center;">
style=" We have received a issue regarding a <b>{{ application_type }}</b> opening at
width: 35%; <b>
height: auto; {{ company_name }}</b> From {{name}}.
display: block; {% if additional_info %}
margin: 0 auto; We received these additional details
" <br>
/>
<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%; <!-- <table style="border:solid 1px; margin: auto; text-align: center;width: 80%;
border-radius:15px; background-color: #e0e3ee"> --> border-radius:15px; background-color: #e0e3ee"> -->
@ -154,49 +132,27 @@
</tr> --> </tr> -->
{% endfor %} {% endfor %}
<!-- </table> --> <!-- </table> -->
{% endif %} please look into it and take necessary actions. {% endif %}
get in touch with the student at
<nobr><u>{{ email }}</u></nobr> please look into it and take necessary actions.
get in touch with the student at <nobr><u>{{ email }}</u></nobr>
<!-- </p> --> <!-- </p> -->
</p> </p></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 <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"
>
<img
src="https://cdc.iitdh.ac.in/storage/Images/twitter.png"
alt="Twitter"
style="width: 24px; height: 24px"
/>
</a> </a>
<a <a href="https://www.instagram.com/cdc.iitdh/?hl=en" style="margin-right: 10px; color: #eff7ff;">
href="https://www.instagram.com/cdc.iitdh/?hl=en" <img src="./images/Instagram_icon.png" alt="Instagram" style="width: 24px; height: 24px;">
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>
<a <a href="https://www.linkedin.com/company/cdciitdharwad/?originalSubdomain=in">
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"> <p style="color: #555555;">copy right &copy; 2024 CDC, all rights reserved</p>
copy right &copy; 2024 CDC, all rights reserved
</p>
</div> </div>
</td> </td>
</tr> </tr>

View File

@ -1,9 +1,9 @@
<!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>
@ -14,20 +14,12 @@
</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 <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap" rel="stylesheet">
href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap"
rel="stylesheet"
/>
<style> <style>
body, body, table, td, div, p, h1 {
table, font-family: 'Roboto', sans-serif;
td,
div,
p,
h1 {
font-family: "Roboto", sans-serif;
} }
body { body {
margin: 0; margin: 0;
@ -46,8 +38,7 @@
border-radius: 8px; border-radius: 8px;
overflow: hidden; overflow: hidden;
} }
.email-header, .email-header, .email-footer {
.email-footer {
padding: 40px 0; padding: 40px 0;
text-align: center; text-align: center;
color: #ffffff; color: #ffffff;
@ -104,8 +95,7 @@
font-weight: 500; font-weight: 500;
} }
@media only screen and (max-width: 600px) { @media only screen and (max-width: 600px) {
.inner-container .email-body, .inner-container .email-body, .email-footer {
.email-footer {
padding: 20px !important; padding: 20px !important;
} }
} }
@ -117,68 +107,33 @@
<tr> <tr>
<td> <td>
<div class="email-header"> <div class="email-header">
<img <img src="./images/CDC-Logo.png" alt="CDC Logo" style="width: 35%; height: auto; display: block; margin: 0 auto;" />
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 <img src="./images/Rejected.png" alt="rejection Logo" style="width: 30%; height: auto; display: block; margin: 0 auto;" />
src="https://cdc.iitdh.ac.in/storage/Images/Rejected.png" <h2 style="text-align: center;">Hey, {{ student_name }}</h2>
alt="rejection Logo" <p style="text-align: center;">
style="
width: 30%;
height: auto;
display: block;
margin: 0 auto;
"
/>
<h2 style="text-align: center">Hey, {{ student_name }}</h2>
<p style="text-align: center">
We regret to inform you that you have not been selected for We regret to inform you that you have not been selected for
<b>{{ designation }}</b> role at <b>{{ company_name }}</b>. <b>{{ designation }}</b> role at <b>{{ company_name }}</b>.
CDC will keep bringing more such opportunities for you in the CDC will keep bringing more such opportunities for you in the future.
future.
</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" </p></div></div>
style="margin-right: 10px; color: #eff7ff" <div class="email-footer">
> <p style="margin-bottom: 16px; color: #555555;">Follow us on:</p>
<img
src="https://cdc.iitdh.ac.in/storage/Images/twitter.png" <a href="https://twitter.com/cdc_iitdh" style="margin-right: 10px; color: #eff7ff">
alt="Twitter" <img src="./images/twitter.png" alt="Twitter" style="width: 24px; height: 24px;">
style="width: 24px; height: 24px"
/>
</a> </a>
<a <a href="https://www.instagram.com/cdc.iitdh/?hl=en" style="margin-right: 10px; color: #eff7ff;">
href="https://www.instagram.com/cdc.iitdh/?hl=en" <img src="./images/Instagram_icon.png" alt="Instagram" style="width: 24px; height: 24px;">
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>
<a <a href="https://www.linkedin.com/company/cdciitdharwad/?originalSubdomain=in">
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"> <p style="color: #555555;">copy right &copy; 2024 CDC, all rights reserved</p>
copy right &copy; 2024 CDC, all rights reserved
</p>
</div> </div>
</td> </td>
</tr> </tr>

View File

@ -1,9 +1,9 @@
<!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>
@ -14,20 +14,12 @@
</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 <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap" rel="stylesheet">
href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap"
rel="stylesheet"
/>
<style> <style>
body, body, table, td, div, p, h1 {
table, font-family: 'Roboto', sans-serif;
td,
div,
p,
h1 {
font-family: "Roboto", sans-serif;
} }
body { body {
margin: 0; margin: 0;
@ -46,8 +38,7 @@
border-radius: 8px; border-radius: 8px;
overflow: hidden; overflow: hidden;
} }
.email-header, .email-header, .email-footer {
.email-footer {
padding: 40px 0; padding: 40px 0;
text-align: center; text-align: center;
color: #ffffff; color: #ffffff;
@ -104,8 +95,7 @@
font-weight: 500; font-weight: 500;
} }
@media only screen and (max-width: 600px) { @media only screen and (max-width: 600px) {
.inner-container .email-body, .inner-container .email-body, .email-footer {
.email-footer {
padding: 20px !important; padding: 20px !important;
} }
} }
@ -117,66 +107,29 @@
<tr> <tr>
<td> <td>
<div class="email-header"> <div class="email-header">
<img <img src="./images/CDC-Logo.png" alt="CDC Logo" style="width: 35%; height: auto; display: block; margin: 0 auto;" />
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 <img src="./images/Confirmed.png" alt="approved Logo" style="width: 30%; height: auto; display: block; margin: 0 auto;" />
src="https://cdc.iitdh.ac.in/storage/Images/Confirmed.png" <h2 style="text-align: center;">Hey, {{ student_name }}</h2>
alt="approved Logo" <p style="text-align: center;">
style=" Congratulations, You have been selected for the <b>{{ designation }}</b> at
width: 30%; <b>{{ company_name }}</b>.<br></p></div></div>
height: auto;
display: block;
margin: 0 auto;
"
/>
<h2 style="text-align: center">Hey, {{ student_name }}</h2>
<p style="text-align: center">
Congratulations, You have been selected for the
<b>{{ designation }}</b> at <b>{{ company_name }}</b>.<br />
</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"
>
<img
src="https://cdc.iitdh.ac.in/storage/Images/twitter.png"
alt="Twitter"
style="width: 24px; height: 24px"
/>
</a> </a>
<a <a href="https://www.instagram.com/cdc.iitdh/?hl=en" style="margin-right: 10px; color: #eff7ff;">
href="https://www.instagram.com/cdc.iitdh/?hl=en" <img src="./images/Instagram_icon.png" alt="Instagram" style="width: 24px; height: 24px;">
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>
<a <a href="https://www.linkedin.com/company/cdciitdharwad/?originalSubdomain=in">
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"> <p style="color: #555555;">copy right &copy; 2024 CDC, all rights reserved</p>
copy right &copy; 2024 CDC, all rights reserved
</p>
</div> </div>
</td> </td>
</tr> </tr>

View File

@ -1,9 +1,9 @@
<!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>
@ -14,20 +14,12 @@
</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 <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap" rel="stylesheet">
href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap"
rel="stylesheet"
/>
<style> <style>
body, body, table, td, div, p, h1 {
table, font-family: 'Roboto', sans-serif;
td,
div,
p,
h1 {
font-family: "Roboto", sans-serif;
} }
body { body {
margin: 0; margin: 0;
@ -46,8 +38,7 @@
border-radius: 8px; border-radius: 8px;
overflow: hidden; overflow: hidden;
} }
.email-header, .email-header, .email-footer {
.email-footer {
padding: 40px 0; padding: 40px 0;
text-align: center; text-align: center;
color: #ffffff; color: #ffffff;
@ -104,8 +95,7 @@
font-weight: 500; font-weight: 500;
} }
@media only screen and (max-width: 600px) { @media only screen and (max-width: 600px) {
.inner-container .email-body, .inner-container .email-body, .email-footer {
.email-footer {
padding: 20px !important; padding: 20px !important;
} }
} }
@ -117,31 +107,20 @@
<tr> <tr>
<td > <td >
<div class="email-header"> <div class="email-header">
<img <img src="./images/CDC-Logo.png" alt="CDC Logo" style="width: 35%; height: auto; display: block; margin: 0 auto;" />
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 <img src="./images/message.png" alt="verify Logo" style="width: 35%; height: auto; display: block; margin: 0 auto;" />
src="https://cdc.iitdh.ac.in/storage/Images/message.png" <h2 style="text-align: center;">Hello, {{ name }}</h2>
alt="verify Logo" <p style="text-align: center;">
style=" We have received your application for a <b>{{ application_type }}</b> offer at
width: 35%; <b>
height: auto; {{ company_name }}</b>.
display: block; {% if additional_info_items %}
margin: 0 auto; We received these additional details
" <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"> -->
@ -154,47 +133,27 @@
<!-- </tr> --> <!-- </tr> -->
{% endfor %} {% endfor %}
<!-- </table> --> <!-- </table> -->
{% endif %} We will keep you informed with the updates. If you {% endif %}
have any queries, please feel to write to We will keep you informed with the updates. If you have any queries, please
feel to
write to
<nobr><u>cdc.support@iitdh.ac.in</u></nobr> <nobr><u>cdc.support@iitdh.ac.in</u></nobr>
</p>
</div>
</div>
<div class="email-footer">
<p style="margin-bottom: 16px; color: #555555">Follow us on:</p>
<a </p></div></div>
href="https://twitter.com/cdc_iitdh" <div class="email-footer">
style="margin-right: 10px; color: #eff7ff" <p style="margin-bottom: 16px; color: #555555;">Follow us on:</p>
>
<img <a href="https://twitter.com/cdc_iitdh" style="margin-right: 10px; color: #eff7ff">
src="https://cdc.iitdh.ac.in/storage/Images/twitter.png" <img src="./images/twitter.png" alt="Twitter" style="width: 24px; height: 24px;">
alt="Twitter"
style="width: 24px; height: 24px"
/>
</a> </a>
<a <a href="https://www.instagram.com/cdc.iitdh/?hl=en" style="margin-right: 10px; color: #eff7ff;">
href="https://www.instagram.com/cdc.iitdh/?hl=en" <img src="./images/Instagram_icon.png" alt="Instagram" style="width: 24px; height: 24px;">
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>
<a <a href="https://www.linkedin.com/company/cdciitdharwad/?originalSubdomain=in">
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"> <p style="color: #555555;">copy right &copy; 2024 CDC, all rights reserved</p>
copy right &copy; 2024 CDC, all rights reserved
</p>
</div> </div>
</td> </td>
</tr> </tr>

View File

@ -1,9 +1,9 @@
<!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>
@ -14,20 +14,12 @@
</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 <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap" rel="stylesheet">
href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap"
rel="stylesheet"
/>
<style> <style>
body, body, table, td, div, p, h1 {
table, font-family: 'Roboto', sans-serif;
td,
div,
p,
h1 {
font-family: "Roboto", sans-serif;
} }
body { body {
margin: 0; margin: 0;
@ -46,8 +38,7 @@
border-radius: 8px; border-radius: 8px;
overflow: hidden; overflow: hidden;
} }
.email-header, .email-header, .email-footer {
.email-footer {
padding: 40px 0; padding: 40px 0;
text-align: center; text-align: center;
color: #ffffff; color: #ffffff;
@ -104,8 +95,7 @@
font-weight: 500; font-weight: 500;
} }
@media only screen and (max-width: 600px) { @media only screen and (max-width: 600px) {
.inner-container .email-body, .inner-container .email-body, .email-footer {
.email-footer {
padding: 20px !important; padding: 20px !important;
} }
} }
@ -117,29 +107,16 @@
<tr> <tr>
<td > <td >
<div class="email-header"> <div class="email-header">
<img <img src="./images/CDC-Logo.png" alt="CDC Logo" style="width: 35%; height: auto; display: block; margin: 0 auto;" />
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 <img src="./images/mobile.png" alt="verify Logo" style="width: 35%; height: auto; display: block; margin: 0 auto;" />
src="https://cdc.iitdh.ac.in/storage/Images/mobile.png" <h2 style="text-align: center;">Hello, {{ name }}</h2>
alt="verify Logo" <p style="text-align: center;">
style=" We have received some update in your application for a <b>{{ application_type }}</b> offer at
width: 35%; <b>
height: auto; {{ company_name }}</b>.
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%; <!-- <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>
@ -162,47 +139,27 @@
<!-- </table> --> <!-- </table> -->
<!-- {% endif %} --> <!-- {% endif %} -->
We will keep you informed with the updates. If you have any We will keep you informed with the updates. If you have any queries, please
queries, please feel to write to feel to
write to
<nobr><u>cdc.support@iitdh.ac.in</u></nobr> <nobr><u>cdc.support@iitdh.ac.in</u></nobr>
</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" </p></div></div>
style="margin-right: 10px; color: #eff7ff" <div class="email-footer">
> <p style="margin-bottom: 16px; color: #555555;">Follow us on:</p>
<img
src="https://cdc.iitdh.ac.in/storage/Images/twitter.png" <a href="https://twitter.com/cdc_iitdh" style="margin-right: 10px; color: #eff7ff">
alt="Twitter" <img src="./images/twitter.png" alt="Twitter" style="width: 24px; height: 24px;">
style="width: 24px; height: 24px"
/>
</a> </a>
<a <a href="https://www.instagram.com/cdc.iitdh/?hl=en" style="margin-right: 10px; color: #eff7ff;">
href="https://www.instagram.com/cdc.iitdh/?hl=en" <img src="./images/Instagram_icon.png" alt="Instagram" style="width: 24px; height: 24px;">
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>
<a <a href="https://www.linkedin.com/company/cdciitdharwad/?originalSubdomain=in">
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"> <p style="color: #555555;">copy right &copy; 2024 CDC, all rights reserved</p>
copy right &copy; 2024 CDC, all rights reserved
</p>
</div> </div>
</td> </td>
</tr> </tr>

View File

@ -107,11 +107,11 @@
<tr> <tr>
<td > <td >
<div class="email-header"> <div class="email-header">
<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;" /> <img src="./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="https://cdc.iitdh.ac.in/storage/Images/tracking.png" alt="verify Logo" style="width: 35%; height: auto; display: block; margin: 0 auto;" /> <img src="./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="https://cdc.iitdh.ac.in/storage/Images/twitter.png" alt="Twitter" style="width: 24px; height: 24px;"> <img src="./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="https://cdc.iitdh.ac.in/storage/Images/Instagram_icon.png" alt="Instagram" style="width: 24px; height: 24px;"> <img src="./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="https://cdc.iitdh.ac.in/storage/Images/LinkedIn_logo_initials.png" alt="LinkedIn" 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 &copy; 2024 CDC, all rights reserved</p> <p style="color: #555555;">copy right &copy; 2024 CDC, all rights reserved</p>

View File

@ -107,11 +107,11 @@
<tr> <tr>
<td> <td>
<div class="email-header"> <div class="email-header">
<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;" /> <img src="./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="https://cdc.iitdh.ac.in/storage/Images/reminder.png" alt="verify Logo" style="width: 25%; height: auto; display: block; margin: 0 auto;" /> <img src="./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="https://cdc.iitdh.ac.in/storage/Images/twitter.png" alt="Twitter" style="width: 24px; height: 24px;"> <img src="./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="https://cdc.iitdh.ac.in/storage/Images/Instagram_icon.png" alt="Instagram" style="width: 24px; height: 24px;"> <img src="./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="https://cdc.iitdh.ac.in/storage/Images/LinkedIn_logo_initials.png" alt="LinkedIn" 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 &copy; 2024 CDC, all rights reserved</p> <p style="color: #555555;">copy right &copy; 2024 CDC, all rights reserved</p>