changes to templates
|
@ -232,8 +232,14 @@ def addPlacement(request):
|
|||
# Convert to date object
|
||||
opening.tentative_date_of_joining = datetime.datetime.strptime(data[TENTATIVE_DATE_OF_JOINING],
|
||||
'%d-%m-%Y').date()
|
||||
opening.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:
|
||||
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
|
||||
opening.allowed_batch = [FOURTH_YEAR,]
|
||||
|
@ -471,8 +477,7 @@ def addInternship(request):
|
|||
if data[WORK_TYPE] == 'Work from home':
|
||||
internship.is_work_from_home = True
|
||||
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]) == ""):
|
||||
raise ValueError('Allowed Batches cannot be empty')
|
||||
elif ALLOWED_BATCH in data and set(json.loads(data[ALLOWED_BATCH])).issubset(BATCHES):
|
||||
|
|
|
@ -10,13 +10,13 @@ BRANCH_CHOICES = [
|
|||
['EP', 'EP'],
|
||||
['CIVIL', 'CIVIL'],
|
||||
['CHEMICAL', 'CHEMICAL'],
|
||||
['BSMS', 'BSMS'],
|
||||
]
|
||||
ELIGIBLE_CHOICES = [
|
||||
["Btech", "Btech"],
|
||||
["MS", "MS"],
|
||||
["MTech", "MTech"],
|
||||
["PHD", "PHD"],
|
||||
["BSMS", "BSMS"],
|
||||
]
|
||||
BRANCHES = [
|
||||
"CSE",
|
||||
|
@ -25,7 +25,7 @@ BRANCHES = [
|
|||
"EP",
|
||||
"CIVIL",
|
||||
"CHEMICAL",
|
||||
"BSMS",
|
||||
"MNC",
|
||||
]
|
||||
ELIGIBLE =[
|
||||
"Btech",
|
||||
|
|
|
@ -1,137 +1,196 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta name="x-apple-disable-message-reformatting">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
||||
<meta name="x-apple-disable-message-reformatting" />
|
||||
<title>Email Template</title>
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
||||
<link rel="shortcut icon" href="favicon.ico"/>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap" rel="stylesheet">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" />
|
||||
<link rel="shortcut icon" href="favicon.ico" />
|
||||
<link
|
||||
href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap"
|
||||
rel="stylesheet"
|
||||
/>
|
||||
<style>
|
||||
body, table, td, div, p, h1 {
|
||||
font-family: 'Roboto', sans-serif;
|
||||
}
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background-color: #e1e4e8; /* Outer background color */
|
||||
}
|
||||
.email-wrapper {
|
||||
padding: 20px;
|
||||
background-color: #e1e4e8; /* Outer background color */
|
||||
}
|
||||
.email-container {
|
||||
width: 100%;
|
||||
max-width: 600px;
|
||||
margin: 0 auto;
|
||||
background-color: #eff7ff; /* Outer box background color */
|
||||
border-radius: 8px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.email-header, .email-footer {
|
||||
padding: 40px 0;
|
||||
text-align: center;
|
||||
color: #ffffff;
|
||||
}
|
||||
.email-header img {
|
||||
width: 150px;
|
||||
height: auto;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.email-header h1 {
|
||||
margin: 0;
|
||||
font-size: 24px;
|
||||
font-weight: 500;
|
||||
}
|
||||
.inner-container {
|
||||
background-color: #ffffff; /* Inner box background color */
|
||||
border-radius: 8px;
|
||||
margin: 0 20px;
|
||||
}
|
||||
.inner-container .email-body {
|
||||
padding: 36px 30px;
|
||||
}
|
||||
.inner-container .email-body h2 {
|
||||
margin-bottom: 24px;
|
||||
font-size: 24px;
|
||||
color: black;
|
||||
font-weight: 500;
|
||||
}
|
||||
.inner-container .email-body p {
|
||||
margin-bottom: 16px;
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
color: #555555;
|
||||
}
|
||||
body,
|
||||
table,
|
||||
td,
|
||||
div,
|
||||
p,
|
||||
h1 {
|
||||
font-family: "Roboto", sans-serif;
|
||||
}
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background-color: #e1e4e8; /* Outer background color */
|
||||
}
|
||||
.email-wrapper {
|
||||
padding: 20px;
|
||||
background-color: #e1e4e8; /* Outer background color */
|
||||
}
|
||||
.email-container {
|
||||
width: 100%;
|
||||
max-width: 600px;
|
||||
margin: 0 auto;
|
||||
background-color: #eff7ff; /* Outer box background color */
|
||||
border-radius: 8px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.email-header,
|
||||
.email-footer {
|
||||
padding: 40px 0;
|
||||
text-align: center;
|
||||
color: #ffffff;
|
||||
}
|
||||
.email-header img {
|
||||
width: 150px;
|
||||
height: auto;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.email-header h1 {
|
||||
margin: 0;
|
||||
font-size: 24px;
|
||||
font-weight: 500;
|
||||
}
|
||||
.inner-container {
|
||||
background-color: #ffffff; /* Inner box background color */
|
||||
border-radius: 8px;
|
||||
margin: 0 20px;
|
||||
}
|
||||
.inner-container .email-body {
|
||||
padding: 36px 30px;
|
||||
}
|
||||
.inner-container .email-body h2 {
|
||||
margin-bottom: 24px;
|
||||
font-size: 24px;
|
||||
color: black;
|
||||
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 {
|
||||
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 {
|
||||
padding: 20px !important;
|
||||
}
|
||||
padding: 20px !important;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
</head>
|
||||
<body>
|
||||
<div class="email-wrapper">
|
||||
<table role="presentation" class="email-container">
|
||||
<tr>
|
||||
<td>
|
||||
<div class="email-header">
|
||||
<img src="./images/CDC-Logo.png" alt="CDC Logo" style="width: 35%; height: auto; display: block; margin: 0 auto;" />
|
||||
</div>
|
||||
<div class="inner-container">
|
||||
<div class="email-body">
|
||||
|
||||
<img src="./images/Approved.png" alt="verify Logo" style="width: 35%; height: auto; display: block; 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>
|
||||
</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="./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="./images/Instagram_icon.png" alt="Instagram" style="width: 24px; height: 24px;">
|
||||
</a>
|
||||
<a href="https://www.linkedin.com/company/cdciitdharwad/?originalSubdomain=in">
|
||||
<img src="./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>
|
||||
<table role="presentation" class="email-container">
|
||||
<tr>
|
||||
<td>
|
||||
<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"
|
||||
/>
|
||||
</div>
|
||||
<div class="inner-container">
|
||||
<div class="email-body">
|
||||
<img
|
||||
src="https://cdc.iitdh.ac.in/storage/Images/Approved.png"
|
||||
alt="verify Logo"
|
||||
style="
|
||||
width: 35%;
|
||||
height: auto;
|
||||
display: block;
|
||||
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>
|
||||
</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>
|
||||
</body>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -118,12 +118,12 @@
|
|||
<div class="email-container">
|
||||
|
||||
<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 class="inner-container">
|
||||
<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>
|
||||
<p style="text-align: center;">
|
||||
<table id="details_table">
|
||||
|
@ -173,13 +173,13 @@
|
|||
<p style="margin-bottom: 16px; color: #555555;">Follow us on:</p>
|
||||
<div class="social-icons">
|
||||
<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 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 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>
|
||||
</div>
|
||||
<p style="color: #555555;">© 2024 CDC, all rights reserved</p>
|
||||
|
|
|
@ -1,126 +1,155 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta name="x-apple-disable-message-reformatting">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
||||
<meta name="x-apple-disable-message-reformatting" />
|
||||
<title></title>
|
||||
<!--[if mso]>
|
||||
<noscript>
|
||||
<noscript>
|
||||
<xml>
|
||||
<o:OfficeDocumentSettings>
|
||||
<o:PixelsPerInch>96</o:PixelsPerInch>
|
||||
</o:OfficeDocumentSettings>
|
||||
<o:OfficeDocumentSettings>
|
||||
<o:PixelsPerInch>96</o:PixelsPerInch>
|
||||
</o:OfficeDocumentSettings>
|
||||
</xml>
|
||||
</noscript>
|
||||
</noscript>
|
||||
<![endif]-->
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
||||
<link rel="shortcut icon" href="favicon.ico"/>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap" rel="stylesheet">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" />
|
||||
<link rel="shortcut icon" href="favicon.ico" />
|
||||
<link
|
||||
href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap"
|
||||
rel="stylesheet"
|
||||
/>
|
||||
<style>
|
||||
body, table, td, div, h1, p {
|
||||
font-family: 'Roboto', sans-serif;
|
||||
}
|
||||
body,
|
||||
table,
|
||||
td,
|
||||
div,
|
||||
h1,
|
||||
p {
|
||||
font-family: "Roboto", sans-serif;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.email-wrapper {
|
||||
width: 100%;
|
||||
background-color: #ffffff;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
.email-wrapper {
|
||||
width: 100%;
|
||||
background-color: #ffffff;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.email-container {
|
||||
max-width: 600px;
|
||||
width: 100%;
|
||||
margin: 0 auto;
|
||||
border: 8 px;
|
||||
border-collapse: collapse;
|
||||
background-color: #eff7ff;
|
||||
overflow: hidden;
|
||||
}
|
||||
.email-container {
|
||||
max-width: 600px;
|
||||
width: 100%;
|
||||
margin: 0 auto;
|
||||
border: 8 px;
|
||||
border-collapse: collapse;
|
||||
background-color: #eff7ff;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.email-header, .email-footer {
|
||||
|
||||
padding: 40px 0;
|
||||
text-align: center;
|
||||
}
|
||||
.email-header,
|
||||
.email-footer {
|
||||
padding: 40px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.email-header img {
|
||||
width: 200px;
|
||||
height: auto;
|
||||
}
|
||||
.inner-container {
|
||||
background-color: #ffffff; /* Inner box background color */
|
||||
border-radius: 8px;
|
||||
margin: 0 20px;
|
||||
}
|
||||
.inner-container .email-body {
|
||||
padding: 36px 30px 42px 30px;
|
||||
}
|
||||
.email-header img {
|
||||
width: 200px;
|
||||
height: auto;
|
||||
}
|
||||
.inner-container {
|
||||
background-color: #ffffff; /* Inner box background color */
|
||||
border-radius: 8px;
|
||||
margin: 0 20px;
|
||||
}
|
||||
.inner-container .email-body {
|
||||
padding: 36px 30px 42px 30px;
|
||||
}
|
||||
|
||||
.inner-container .email-body h2 {
|
||||
font-size: 24px;
|
||||
margin: 0 0 20px 0;
|
||||
color: #153643;
|
||||
}
|
||||
.inner-container .email-body h2 {
|
||||
font-size: 24px;
|
||||
margin: 0 0 20px 0;
|
||||
color: #153643;
|
||||
}
|
||||
|
||||
.inner-container .email-body p {
|
||||
margin: 0 0 12px 0;
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
color: #153643;
|
||||
}
|
||||
.inner-container .email-body p {
|
||||
margin: 0 0 12px 0;
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
color: #153643;
|
||||
}
|
||||
|
||||
#details_table {
|
||||
width: 100%;
|
||||
border: 1px solid #334878;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
#details_table {
|
||||
width: 100%;
|
||||
border: 1px solid #334878;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
#details_table td {
|
||||
padding: 10px;
|
||||
color: #153643;
|
||||
border: 1px solid #334878;
|
||||
}
|
||||
#details_table td {
|
||||
padding: 10px;
|
||||
color: #153643;
|
||||
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 {
|
||||
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 {
|
||||
padding: 20px !important;
|
||||
}
|
||||
padding: 20px !important;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="email-wrapper">
|
||||
<table role="presentation" class="email-container">
|
||||
</head>
|
||||
<body>
|
||||
<div class="email-wrapper">
|
||||
<table role="presentation" class="email-container">
|
||||
<tr>
|
||||
<td>
|
||||
<div class="email-header">
|
||||
<img src="./images/CDC-Logo.png" alt="CDC Logo" style="width: 35%; height: auto; display: block; margin: 0 auto;" />
|
||||
</div>
|
||||
<div class="inner-container">
|
||||
<div class="email-body">
|
||||
|
||||
<img src="./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">
|
||||
<td>
|
||||
<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"
|
||||
/>
|
||||
</div>
|
||||
<div class="inner-container">
|
||||
<div class="email-body">
|
||||
<img
|
||||
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 %}
|
||||
<tr>
|
||||
<td>{{ key }}</td>
|
||||
|
@ -138,26 +167,47 @@
|
|||
</tr>
|
||||
{% endfor %}
|
||||
</table> -->
|
||||
</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="./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="./images/Instagram_icon.png" alt="Instagram" style="width: 24px; height: 24px;">
|
||||
</a>
|
||||
<a href="https://www.linkedin.com/company/cdciitdharwad/?originalSubdomain=in">
|
||||
<img src="./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>
|
||||
</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>
|
||||
</body>
|
||||
</table>
|
||||
</div>
|
||||
</body>
|
||||
</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>
|
||||
|
||||
<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 class="inner-container">
|
||||
<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>
|
||||
<p style="text-align: center;">
|
||||
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>
|
||||
|
||||
<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 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 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>
|
||||
<p style="color: #555555;">copy right © 2024 CDC, all rights reserved</p>
|
||||
|
||||
|
|
|
@ -1,162 +1,206 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta name="x-apple-disable-message-reformatting">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
||||
<meta name="x-apple-disable-message-reformatting" />
|
||||
<title></title>
|
||||
<!--[if mso]>
|
||||
<noscript>
|
||||
<noscript>
|
||||
<xml>
|
||||
<o:OfficeDocumentSettings>
|
||||
<o:PixelsPerInch>96</o:PixelsPerInch>
|
||||
</o:OfficeDocumentSettings>
|
||||
<o:OfficeDocumentSettings>
|
||||
<o:PixelsPerInch>96</o:PixelsPerInch>
|
||||
</o:OfficeDocumentSettings>
|
||||
</xml>
|
||||
</noscript>
|
||||
</noscript>
|
||||
<![endif]-->
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
||||
<link rel="shortcut icon" href="favicon.ico"/>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap" rel="stylesheet">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" />
|
||||
<link rel="shortcut icon" href="favicon.ico" />
|
||||
<link
|
||||
href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap"
|
||||
rel="stylesheet"
|
||||
/>
|
||||
<style>
|
||||
body, table, td, div, p, h1 {
|
||||
font-family: 'Roboto', sans-serif;
|
||||
}
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background-color: #e1e4e8; /* Outer background color */
|
||||
}
|
||||
.email-wrapper {
|
||||
padding: 20px;
|
||||
background-color: #e1e4e8; /* Outer background color */
|
||||
}
|
||||
.email-container {
|
||||
width: 100%;
|
||||
max-width: 600px;
|
||||
margin: 0 auto;
|
||||
background-color: #eff7ff; /* Outer box background color */
|
||||
border-radius: 8px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.email-header, .email-footer {
|
||||
padding: 40px 0;
|
||||
text-align: center;
|
||||
color: #ffffff;
|
||||
}
|
||||
.email-header img {
|
||||
width: 150px;
|
||||
height: auto;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.email-header h1 {
|
||||
margin: 0;
|
||||
font-size: 24px;
|
||||
font-weight: 500;
|
||||
}
|
||||
.inner-container {
|
||||
background-color: #ffffff; /* Inner box background color */
|
||||
border-radius: 8px;
|
||||
margin: 0 20px;
|
||||
}
|
||||
.inner-container .email-body {
|
||||
padding: 36px 30px;
|
||||
}
|
||||
.inner-container .email-body h2 {
|
||||
margin-bottom: 24px;
|
||||
font-size: 24px;
|
||||
color: black;
|
||||
font-weight: 500;
|
||||
}
|
||||
.inner-container .email-body p {
|
||||
margin-bottom: 16px;
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
color: #555555;
|
||||
}
|
||||
body,
|
||||
table,
|
||||
td,
|
||||
div,
|
||||
p,
|
||||
h1 {
|
||||
font-family: "Roboto", sans-serif;
|
||||
}
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background-color: #e1e4e8; /* Outer background color */
|
||||
}
|
||||
.email-wrapper {
|
||||
padding: 20px;
|
||||
background-color: #e1e4e8; /* Outer background color */
|
||||
}
|
||||
.email-container {
|
||||
width: 100%;
|
||||
max-width: 600px;
|
||||
margin: 0 auto;
|
||||
background-color: #eff7ff; /* Outer box background color */
|
||||
border-radius: 8px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.email-header,
|
||||
.email-footer {
|
||||
padding: 40px 0;
|
||||
text-align: center;
|
||||
color: #ffffff;
|
||||
}
|
||||
.email-header img {
|
||||
width: 150px;
|
||||
height: auto;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.email-header h1 {
|
||||
margin: 0;
|
||||
font-size: 24px;
|
||||
font-weight: 500;
|
||||
}
|
||||
.inner-container {
|
||||
background-color: #ffffff; /* Inner box background color */
|
||||
border-radius: 8px;
|
||||
margin: 0 20px;
|
||||
}
|
||||
.inner-container .email-body {
|
||||
padding: 36px 30px;
|
||||
}
|
||||
.inner-container .email-body h2 {
|
||||
margin-bottom: 24px;
|
||||
font-size: 24px;
|
||||
color: black;
|
||||
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 {
|
||||
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 {
|
||||
padding: 20px !important;
|
||||
}
|
||||
padding: 20px !important;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
</head>
|
||||
<body>
|
||||
<div class="email-wrapper">
|
||||
<table role="presentation" class="email-container">
|
||||
<tr>
|
||||
<td >
|
||||
<table role="presentation" class="email-container">
|
||||
<tr>
|
||||
<td>
|
||||
<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 class="inner-container">
|
||||
<div class="email-body">
|
||||
<img src="./images/tracking.png" alt="verify Logo" style="width: 35%; height: auto; display: block; margin: 0 auto;" />
|
||||
<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%;
|
||||
<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;
|
||||
"
|
||||
/>
|
||||
<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"> -->
|
||||
|
||||
{% for i,j in additional_info.items %}
|
||||
|
||||
<!-- <tr>
|
||||
|
||||
{% for i,j in additional_info.items %}
|
||||
|
||||
<!-- <tr>
|
||||
<td style="padding:8px 10px;color:#153643; ">{{ i }}:</td>
|
||||
<td style="padding:8px 10px;color:#153643;">{{ j }}</td>
|
||||
</tr> -->
|
||||
{% endfor %}
|
||||
<!-- </table> -->
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
<!-- </table> -->
|
||||
{% 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.
|
||||
get in touch with the student at <nobr><u>{{ email }}</u></nobr>
|
||||
|
||||
<!-- </p> -->
|
||||
</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="./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="./images/Instagram_icon.png" alt="Instagram" style="width: 24px; height: 24px;">
|
||||
</a>
|
||||
<a href="https://www.linkedin.com/company/cdciitdharwad/?originalSubdomain=in">
|
||||
<img src="./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>
|
||||
<!-- </p> -->
|
||||
</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>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,143 +1,188 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta name="x-apple-disable-message-reformatting">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
||||
<meta name="x-apple-disable-message-reformatting" />
|
||||
<title></title>
|
||||
<!--[if mso]>
|
||||
<noscript>
|
||||
<noscript>
|
||||
<xml>
|
||||
<o:OfficeDocumentSettings>
|
||||
<o:PixelsPerInch>96</o:PixelsPerInch>
|
||||
</o:OfficeDocumentSettings>
|
||||
<o:OfficeDocumentSettings>
|
||||
<o:PixelsPerInch>96</o:PixelsPerInch>
|
||||
</o:OfficeDocumentSettings>
|
||||
</xml>
|
||||
</noscript>
|
||||
</noscript>
|
||||
<![endif]-->
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
||||
<link rel="shortcut icon" href="favicon.ico"/>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap" rel="stylesheet">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" />
|
||||
<link rel="shortcut icon" href="favicon.ico" />
|
||||
<link
|
||||
href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap"
|
||||
rel="stylesheet"
|
||||
/>
|
||||
<style>
|
||||
body, table, td, div, p, h1 {
|
||||
font-family: 'Roboto', sans-serif;
|
||||
}
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background-color: #e1e4e8; /* Outer background color */
|
||||
}
|
||||
.email-wrapper {
|
||||
padding: 20px;
|
||||
background-color: #e1e4e8; /* Outer background color */
|
||||
}
|
||||
.email-container {
|
||||
width: 100%;
|
||||
max-width: 600px;
|
||||
margin: 0 auto;
|
||||
background-color: #eff7ff; /* Outer box background color */
|
||||
border-radius: 8px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.email-header, .email-footer {
|
||||
padding: 40px 0;
|
||||
text-align: center;
|
||||
color: #ffffff;
|
||||
}
|
||||
.email-header img {
|
||||
width: 150px;
|
||||
height: auto;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.email-header h1 {
|
||||
margin: 0;
|
||||
font-size: 24px;
|
||||
font-weight: 500;
|
||||
}
|
||||
.inner-container {
|
||||
background-color: #ffffff; /* Inner box background color */
|
||||
border-radius: 8px;
|
||||
margin: 0 20px;
|
||||
}
|
||||
.inner-container .email-body {
|
||||
padding: 36px 30px;
|
||||
}
|
||||
.inner-container .email-body h2 {
|
||||
margin-bottom: 24px;
|
||||
font-size: 24px;
|
||||
color: black;
|
||||
font-weight: 500;
|
||||
}
|
||||
.inner-container .email-body p {
|
||||
margin-bottom: 16px;
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
color: #555555;
|
||||
}
|
||||
body,
|
||||
table,
|
||||
td,
|
||||
div,
|
||||
p,
|
||||
h1 {
|
||||
font-family: "Roboto", sans-serif;
|
||||
}
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background-color: #e1e4e8; /* Outer background color */
|
||||
}
|
||||
.email-wrapper {
|
||||
padding: 20px;
|
||||
background-color: #e1e4e8; /* Outer background color */
|
||||
}
|
||||
.email-container {
|
||||
width: 100%;
|
||||
max-width: 600px;
|
||||
margin: 0 auto;
|
||||
background-color: #eff7ff; /* Outer box background color */
|
||||
border-radius: 8px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.email-header,
|
||||
.email-footer {
|
||||
padding: 40px 0;
|
||||
text-align: center;
|
||||
color: #ffffff;
|
||||
}
|
||||
.email-header img {
|
||||
width: 150px;
|
||||
height: auto;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.email-header h1 {
|
||||
margin: 0;
|
||||
font-size: 24px;
|
||||
font-weight: 500;
|
||||
}
|
||||
.inner-container {
|
||||
background-color: #ffffff; /* Inner box background color */
|
||||
border-radius: 8px;
|
||||
margin: 0 20px;
|
||||
}
|
||||
.inner-container .email-body {
|
||||
padding: 36px 30px;
|
||||
}
|
||||
.inner-container .email-body h2 {
|
||||
margin-bottom: 24px;
|
||||
font-size: 24px;
|
||||
color: black;
|
||||
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 {
|
||||
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 {
|
||||
padding: 20px !important;
|
||||
}
|
||||
padding: 20px !important;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
</head>
|
||||
<body>
|
||||
<div class="email-wrapper">
|
||||
<table role="presentation" class="email-container">
|
||||
<tr>
|
||||
<td>
|
||||
<table role="presentation" class="email-container">
|
||||
<tr>
|
||||
<td>
|
||||
<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 class="inner-container">
|
||||
<div class="email-body">
|
||||
<img src="./images/Rejected.png" alt="rejection Logo" 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
|
||||
<b>{{ designation }}</b> role at <b>{{ company_name }}</b>.
|
||||
CDC will keep bringing more such opportunities for you in the 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" style="margin-right: 10px; color: #eff7ff">
|
||||
<img src="./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="./images/Instagram_icon.png" alt="Instagram" style="width: 24px; height: 24px;">
|
||||
</a>
|
||||
<a href="https://www.linkedin.com/company/cdciitdharwad/?originalSubdomain=in">
|
||||
<img src="./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>
|
||||
<div class="email-body">
|
||||
<img
|
||||
src="https://cdc.iitdh.ac.in/storage/Images/Rejected.png"
|
||||
alt="rejection Logo"
|
||||
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
|
||||
<b>{{ designation }}</b> role at <b>{{ company_name }}</b>.
|
||||
CDC will keep bringing more such opportunities for you in the
|
||||
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"
|
||||
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>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,139 +1,186 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta name="x-apple-disable-message-reformatting">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
||||
<meta name="x-apple-disable-message-reformatting" />
|
||||
<title></title>
|
||||
<!--[if mso]>
|
||||
<noscript>
|
||||
<noscript>
|
||||
<xml>
|
||||
<o:OfficeDocumentSettings>
|
||||
<o:PixelsPerInch>96</o:PixelsPerInch>
|
||||
</o:OfficeDocumentSettings>
|
||||
<o:OfficeDocumentSettings>
|
||||
<o:PixelsPerInch>96</o:PixelsPerInch>
|
||||
</o:OfficeDocumentSettings>
|
||||
</xml>
|
||||
</noscript>
|
||||
</noscript>
|
||||
<![endif]-->
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
||||
<link rel="shortcut icon" href="favicon.ico"/>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap" rel="stylesheet">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" />
|
||||
<link rel="shortcut icon" href="favicon.ico" />
|
||||
<link
|
||||
href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap"
|
||||
rel="stylesheet"
|
||||
/>
|
||||
<style>
|
||||
body, table, td, div, p, h1 {
|
||||
font-family: 'Roboto', sans-serif;
|
||||
}
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background-color: #e1e4e8; /* Outer background color */
|
||||
}
|
||||
.email-wrapper {
|
||||
padding: 20px;
|
||||
background-color: #e1e4e8; /* Outer background color */
|
||||
}
|
||||
.email-container {
|
||||
width: 100%;
|
||||
max-width: 600px;
|
||||
margin: 0 auto;
|
||||
background-color: #eff7ff; /* Outer box background color */
|
||||
border-radius: 8px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.email-header, .email-footer {
|
||||
padding: 40px 0;
|
||||
text-align: center;
|
||||
color: #ffffff;
|
||||
}
|
||||
.email-header img {
|
||||
width: 150px;
|
||||
height: auto;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.email-header h1 {
|
||||
margin: 0;
|
||||
font-size: 24px;
|
||||
font-weight: 500;
|
||||
}
|
||||
.inner-container {
|
||||
background-color: #ffffff; /* Inner box background color */
|
||||
border-radius: 8px;
|
||||
margin: 0 20px;
|
||||
}
|
||||
.inner-container .email-body {
|
||||
padding: 36px 30px;
|
||||
}
|
||||
.inner-container .email-body h2 {
|
||||
margin-bottom: 24px;
|
||||
font-size: 24px;
|
||||
color: black;
|
||||
font-weight: 500;
|
||||
}
|
||||
.inner-container .email-body p {
|
||||
margin-bottom: 16px;
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
color: #555555;
|
||||
}
|
||||
body,
|
||||
table,
|
||||
td,
|
||||
div,
|
||||
p,
|
||||
h1 {
|
||||
font-family: "Roboto", sans-serif;
|
||||
}
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background-color: #e1e4e8; /* Outer background color */
|
||||
}
|
||||
.email-wrapper {
|
||||
padding: 20px;
|
||||
background-color: #e1e4e8; /* Outer background color */
|
||||
}
|
||||
.email-container {
|
||||
width: 100%;
|
||||
max-width: 600px;
|
||||
margin: 0 auto;
|
||||
background-color: #eff7ff; /* Outer box background color */
|
||||
border-radius: 8px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.email-header,
|
||||
.email-footer {
|
||||
padding: 40px 0;
|
||||
text-align: center;
|
||||
color: #ffffff;
|
||||
}
|
||||
.email-header img {
|
||||
width: 150px;
|
||||
height: auto;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.email-header h1 {
|
||||
margin: 0;
|
||||
font-size: 24px;
|
||||
font-weight: 500;
|
||||
}
|
||||
.inner-container {
|
||||
background-color: #ffffff; /* Inner box background color */
|
||||
border-radius: 8px;
|
||||
margin: 0 20px;
|
||||
}
|
||||
.inner-container .email-body {
|
||||
padding: 36px 30px;
|
||||
}
|
||||
.inner-container .email-body h2 {
|
||||
margin-bottom: 24px;
|
||||
font-size: 24px;
|
||||
color: black;
|
||||
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 {
|
||||
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 {
|
||||
padding: 20px !important;
|
||||
}
|
||||
padding: 20px !important;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
</head>
|
||||
<body>
|
||||
<div class="email-wrapper">
|
||||
<table role="presentation" class="email-container">
|
||||
<tr>
|
||||
<td>
|
||||
<table role="presentation" class="email-container">
|
||||
<tr>
|
||||
<td>
|
||||
<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 class="inner-container">
|
||||
<div class="email-body">
|
||||
<img src="./images/Confirmed.png" alt="approved Logo" style="width: 30%; 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">
|
||||
<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="./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="./images/Instagram_icon.png" alt="Instagram" style="width: 24px; height: 24px;">
|
||||
</a>
|
||||
<a href="https://www.linkedin.com/company/cdciitdharwad/?originalSubdomain=in">
|
||||
<img src="./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>
|
||||
<div class="email-body">
|
||||
<img
|
||||
src="https://cdc.iitdh.ac.in/storage/Images/Confirmed.png"
|
||||
alt="approved Logo"
|
||||
style="
|
||||
width: 30%;
|
||||
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">
|
||||
<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>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,163 +1,204 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta name="x-apple-disable-message-reformatting">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
||||
<meta name="x-apple-disable-message-reformatting" />
|
||||
<title></title>
|
||||
<!--[if mso]>
|
||||
<noscript>
|
||||
<noscript>
|
||||
<xml>
|
||||
<o:OfficeDocumentSettings>
|
||||
<o:PixelsPerInch>96</o:PixelsPerInch>
|
||||
</o:OfficeDocumentSettings>
|
||||
<o:OfficeDocumentSettings>
|
||||
<o:PixelsPerInch>96</o:PixelsPerInch>
|
||||
</o:OfficeDocumentSettings>
|
||||
</xml>
|
||||
</noscript>
|
||||
</noscript>
|
||||
<![endif]-->
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
||||
<link rel="shortcut icon" href="favicon.ico"/>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap" rel="stylesheet">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" />
|
||||
<link rel="shortcut icon" href="favicon.ico" />
|
||||
<link
|
||||
href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap"
|
||||
rel="stylesheet"
|
||||
/>
|
||||
<style>
|
||||
body, table, td, div, p, h1 {
|
||||
font-family: 'Roboto', sans-serif;
|
||||
}
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background-color: #e1e4e8; /* Outer background color */
|
||||
}
|
||||
.email-wrapper {
|
||||
padding: 20px;
|
||||
background-color: #e1e4e8; /* Outer background color */
|
||||
}
|
||||
.email-container {
|
||||
width: 100%;
|
||||
max-width: 600px;
|
||||
margin: 0 auto;
|
||||
background-color: #eff7ff; /* Outer box background color */
|
||||
border-radius: 8px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.email-header, .email-footer {
|
||||
padding: 40px 0;
|
||||
text-align: center;
|
||||
color: #ffffff;
|
||||
}
|
||||
.email-header img {
|
||||
width: 150px;
|
||||
height: auto;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.email-header h1 {
|
||||
margin: 0;
|
||||
font-size: 24px;
|
||||
font-weight: 500;
|
||||
}
|
||||
.inner-container {
|
||||
background-color: #ffffff; /* Inner box background color */
|
||||
border-radius: 8px;
|
||||
margin: 0 20px;
|
||||
}
|
||||
.inner-container .email-body {
|
||||
padding: 36px 30px;
|
||||
}
|
||||
.inner-container .email-body h2 {
|
||||
margin-bottom: 24px;
|
||||
font-size: 24px;
|
||||
color: black;
|
||||
font-weight: 500;
|
||||
}
|
||||
.inner-container .email-body p {
|
||||
margin-bottom: 16px;
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
color: #555555;
|
||||
}
|
||||
body,
|
||||
table,
|
||||
td,
|
||||
div,
|
||||
p,
|
||||
h1 {
|
||||
font-family: "Roboto", sans-serif;
|
||||
}
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background-color: #e1e4e8; /* Outer background color */
|
||||
}
|
||||
.email-wrapper {
|
||||
padding: 20px;
|
||||
background-color: #e1e4e8; /* Outer background color */
|
||||
}
|
||||
.email-container {
|
||||
width: 100%;
|
||||
max-width: 600px;
|
||||
margin: 0 auto;
|
||||
background-color: #eff7ff; /* Outer box background color */
|
||||
border-radius: 8px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.email-header,
|
||||
.email-footer {
|
||||
padding: 40px 0;
|
||||
text-align: center;
|
||||
color: #ffffff;
|
||||
}
|
||||
.email-header img {
|
||||
width: 150px;
|
||||
height: auto;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.email-header h1 {
|
||||
margin: 0;
|
||||
font-size: 24px;
|
||||
font-weight: 500;
|
||||
}
|
||||
.inner-container {
|
||||
background-color: #ffffff; /* Inner box background color */
|
||||
border-radius: 8px;
|
||||
margin: 0 20px;
|
||||
}
|
||||
.inner-container .email-body {
|
||||
padding: 36px 30px;
|
||||
}
|
||||
.inner-container .email-body h2 {
|
||||
margin-bottom: 24px;
|
||||
font-size: 24px;
|
||||
color: black;
|
||||
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 {
|
||||
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 {
|
||||
padding: 20px !important;
|
||||
}
|
||||
padding: 20px !important;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
</head>
|
||||
<body>
|
||||
<div class="email-wrapper">
|
||||
<table role="presentation" class="email-container">
|
||||
<tr>
|
||||
<td >
|
||||
<table role="presentation" class="email-container">
|
||||
<tr>
|
||||
<td>
|
||||
<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 class="inner-container">
|
||||
<div class="email-body">
|
||||
<img src="./images/message.png" alt="verify Logo" style="width: 35%; height: auto; display: block; margin: 0 auto;" />
|
||||
<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>
|
||||
|
||||
<div class="email-body">
|
||||
<img
|
||||
src="https://cdc.iitdh.ac.in/storage/Images/message.png"
|
||||
alt="verify Logo"
|
||||
style="
|
||||
width: 35%;
|
||||
height: auto;
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
"
|
||||
/>
|
||||
<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"> -->
|
||||
|
||||
{% for i,j in additional_info.items %}
|
||||
{% for i,j in additional_info.items %}
|
||||
|
||||
<!-- <tr> -->
|
||||
<!-- <td style="padding:8px 10px;color:#153643; ">{{ i }}:</td> -->
|
||||
<!-- <td style="padding:8px 10px;color:#153643;">{{ j }}</td> -->
|
||||
<!-- </tr> -->
|
||||
{% endfor %}
|
||||
<!-- </table> -->
|
||||
{% endif %}
|
||||
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>
|
||||
|
||||
</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="./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="./images/Instagram_icon.png" alt="Instagram" style="width: 24px; height: 24px;">
|
||||
</a>
|
||||
<a href="https://www.linkedin.com/company/cdciitdharwad/?originalSubdomain=in">
|
||||
<img src="./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>
|
||||
<!-- <tr> -->
|
||||
<!-- <td style="padding:8px 10px;color:#153643; ">{{ i }}:</td> -->
|
||||
<!-- <td style="padding:8px 10px;color:#153643;">{{ j }}</td> -->
|
||||
<!-- </tr> -->
|
||||
{% endfor %}
|
||||
<!-- </table> -->
|
||||
{% endif %} 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>
|
||||
</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>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,123 +1,146 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta name="x-apple-disable-message-reformatting">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
||||
<meta name="x-apple-disable-message-reformatting" />
|
||||
<title></title>
|
||||
<!--[if mso]>
|
||||
<noscript>
|
||||
<noscript>
|
||||
<xml>
|
||||
<o:OfficeDocumentSettings>
|
||||
<o:PixelsPerInch>96</o:PixelsPerInch>
|
||||
</o:OfficeDocumentSettings>
|
||||
<o:OfficeDocumentSettings>
|
||||
<o:PixelsPerInch>96</o:PixelsPerInch>
|
||||
</o:OfficeDocumentSettings>
|
||||
</xml>
|
||||
</noscript>
|
||||
</noscript>
|
||||
<![endif]-->
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
||||
<link rel="shortcut icon" href="favicon.ico"/>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap" rel="stylesheet">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" />
|
||||
<link rel="shortcut icon" href="favicon.ico" />
|
||||
<link
|
||||
href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap"
|
||||
rel="stylesheet"
|
||||
/>
|
||||
<style>
|
||||
body, table, td, div, p, h1 {
|
||||
font-family: 'Roboto', sans-serif;
|
||||
}
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background-color: #e1e4e8; /* Outer background color */
|
||||
}
|
||||
.email-wrapper {
|
||||
padding: 20px;
|
||||
background-color: #e1e4e8; /* Outer background color */
|
||||
}
|
||||
.email-container {
|
||||
width: 100%;
|
||||
max-width: 600px;
|
||||
margin: 0 auto;
|
||||
background-color: #eff7ff; /* Outer box background color */
|
||||
border-radius: 8px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.email-header, .email-footer {
|
||||
padding: 40px 0;
|
||||
text-align: center;
|
||||
color: #ffffff;
|
||||
}
|
||||
.email-header img {
|
||||
width: 150px;
|
||||
height: auto;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.email-header h1 {
|
||||
margin: 0;
|
||||
font-size: 24px;
|
||||
font-weight: 500;
|
||||
}
|
||||
.inner-container {
|
||||
background-color: #ffffff; /* Inner box background color */
|
||||
border-radius: 8px;
|
||||
margin: 0 20px;
|
||||
}
|
||||
.inner-container .email-body {
|
||||
padding: 36px 30px;
|
||||
}
|
||||
.inner-container .email-body h2 {
|
||||
margin-bottom: 24px;
|
||||
font-size: 24px;
|
||||
color: black;
|
||||
font-weight: 500;
|
||||
}
|
||||
.inner-container .email-body p {
|
||||
margin-bottom: 16px;
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
color: #555555;
|
||||
}
|
||||
body,
|
||||
table,
|
||||
td,
|
||||
div,
|
||||
p,
|
||||
h1 {
|
||||
font-family: "Roboto", sans-serif;
|
||||
}
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background-color: #e1e4e8; /* Outer background color */
|
||||
}
|
||||
.email-wrapper {
|
||||
padding: 20px;
|
||||
background-color: #e1e4e8; /* Outer background color */
|
||||
}
|
||||
.email-container {
|
||||
width: 100%;
|
||||
max-width: 600px;
|
||||
margin: 0 auto;
|
||||
background-color: #eff7ff; /* Outer box background color */
|
||||
border-radius: 8px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.email-header,
|
||||
.email-footer {
|
||||
padding: 40px 0;
|
||||
text-align: center;
|
||||
color: #ffffff;
|
||||
}
|
||||
.email-header img {
|
||||
width: 150px;
|
||||
height: auto;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.email-header h1 {
|
||||
margin: 0;
|
||||
font-size: 24px;
|
||||
font-weight: 500;
|
||||
}
|
||||
.inner-container {
|
||||
background-color: #ffffff; /* Inner box background color */
|
||||
border-radius: 8px;
|
||||
margin: 0 20px;
|
||||
}
|
||||
.inner-container .email-body {
|
||||
padding: 36px 30px;
|
||||
}
|
||||
.inner-container .email-body h2 {
|
||||
margin-bottom: 24px;
|
||||
font-size: 24px;
|
||||
color: black;
|
||||
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 {
|
||||
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 {
|
||||
padding: 20px !important;
|
||||
}
|
||||
padding: 20px !important;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
</head>
|
||||
<body>
|
||||
<div class="email-wrapper">
|
||||
<table role="presentation" class="email-container">
|
||||
<tr>
|
||||
<td >
|
||||
<table role="presentation" class="email-container">
|
||||
<tr>
|
||||
<td>
|
||||
<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 class="inner-container">
|
||||
<div class="email-body">
|
||||
<img src="./images/mobile.png" alt="verify Logo" style="width: 35%; height: auto; 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%;
|
||||
<div class="email-body">
|
||||
<img
|
||||
src="https://cdc.iitdh.ac.in/storage/Images/mobile.png"
|
||||
alt="verify Logo"
|
||||
style="
|
||||
width: 35%;
|
||||
height: auto;
|
||||
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">
|
||||
<tr>
|
||||
<td style="padding:8px 10px;color:#153643; "> resume:</td>
|
||||
|
@ -125,45 +148,65 @@
|
|||
</tr>
|
||||
</table>
|
||||
-->
|
||||
<!-- {% if additional_info_items %} -->
|
||||
<!-- We received these additional details -->
|
||||
<!-- <br> -->
|
||||
<!-- <p style="text-align: center;"> -->
|
||||
<!-- {% for i,j in additional_info_items.items %} -->
|
||||
|
||||
<!-- <tr>
|
||||
<!-- {% if additional_info_items %} -->
|
||||
<!-- We received these additional details -->
|
||||
<!-- <br> -->
|
||||
<!-- <p style="text-align: center;"> -->
|
||||
<!-- {% for i,j in additional_info_items.items %} -->
|
||||
|
||||
<!-- <tr>
|
||||
<td style="padding:8px 10px;color:#153643; ">{{ i }}:</td>
|
||||
<td style="padding:8px 10px;color:#153643;">{{ j }}</td>
|
||||
</tr> -->
|
||||
<!-- {% endfor %} -->
|
||||
<!-- </table> -->
|
||||
<!-- {% endif %} -->
|
||||
<!-- {% endfor %} -->
|
||||
<!-- </table> -->
|
||||
<!-- {% endif %} -->
|
||||
|
||||
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>
|
||||
|
||||
|
||||
</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="./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="./images/Instagram_icon.png" alt="Instagram" style="width: 24px; height: 24px;">
|
||||
</a>
|
||||
<a href="https://www.linkedin.com/company/cdciitdharwad/?originalSubdomain=in">
|
||||
<img src="./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>
|
||||
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>
|
||||
</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>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -107,11 +107,11 @@
|
|||
<tr>
|
||||
<td >
|
||||
<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 class="inner-container">
|
||||
<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;"
|
||||
>Hello, {{ name }}</h1>
|
||||
<p style="text-align:center;">
|
||||
|
@ -143,13 +143,13 @@
|
|||
<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="./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 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 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>
|
||||
<p style="color: #555555;">copy right © 2024 CDC, all rights reserved</p>
|
||||
|
||||
|
|
|
@ -107,11 +107,11 @@
|
|||
<tr>
|
||||
<td>
|
||||
<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 class="inner-container">
|
||||
<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>
|
||||
<p style="text-align: center;">
|
||||
Gentle reminder to fill out the application form.
|
||||
|
@ -125,13 +125,13 @@
|
|||
<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="./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 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 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>
|
||||
<p style="color: #555555;">copy right © 2024 CDC, all rights reserved</p>
|
||||
|
||||
|
|