2022-07-28 14:37:41 +05:30
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
2024-07-25 12:25:49 +05:30
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
|
|
<meta name="x-apple-disable-message-reformatting" />
|
2022-07-28 14:37:41 +05:30
|
|
|
<title></title>
|
|
|
|
<!--[if mso]>
|
2024-07-25 12:25:49 +05:30
|
|
|
<noscript>
|
2022-07-28 14:37:41 +05:30
|
|
|
<xml>
|
2024-07-25 12:25:49 +05:30
|
|
|
<o:OfficeDocumentSettings>
|
|
|
|
<o:PixelsPerInch>96</o:PixelsPerInch>
|
|
|
|
</o:OfficeDocumentSettings>
|
2022-07-28 14:37:41 +05:30
|
|
|
</xml>
|
2024-07-25 12:25:49 +05:30
|
|
|
</noscript>
|
2022-07-28 14:37:41 +05:30
|
|
|
<![endif]-->
|
2024-07-25 12:25:49 +05:30
|
|
|
<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"
|
|
|
|
/>
|
2022-07-28 14:37:41 +05:30
|
|
|
<style>
|
2024-07-25 12:25:49 +05:30
|
|
|
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,
|
2024-06-18 18:23:57 +05:30
|
|
|
.email-footer {
|
2024-07-25 12:25:49 +05:30
|
|
|
padding: 20px !important;
|
2024-06-18 18:23:57 +05:30
|
|
|
}
|
2024-07-25 12:25:49 +05:30
|
|
|
}
|
2022-07-28 14:37:41 +05:30
|
|
|
</style>
|
2024-07-25 12:25:49 +05:30
|
|
|
</head>
|
|
|
|
<body>
|
2024-06-18 18:23:57 +05:30
|
|
|
<div class="email-wrapper">
|
2024-07-25 12:25:49 +05:30
|
|
|
<table role="presentation" class="email-container">
|
|
|
|
<tr>
|
|
|
|
<td>
|
2024-06-18 18:23:57 +05:30
|
|
|
<div class="email-header">
|
2024-07-25 12:25:49 +05:30
|
|
|
<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"
|
|
|
|
/>
|
2024-06-18 18:23:57 +05:30
|
|
|
</div>
|
|
|
|
<div class="inner-container">
|
2024-07-25 12:25:49 +05:30
|
|
|
<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%;
|
2024-06-18 18:23:57 +05:30
|
|
|
border-radius:15px; background-color: #e0e3ee">
|
|
|
|
<tr>
|
|
|
|
<td style="padding:8px 10px;color:#153643; "> resume:</td>
|
|
|
|
<td style="padding:8px 10px;color:#153643;">{{ resume }}</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
-->
|
2024-07-25 12:25:49 +05:30
|
|
|
<!-- {% if additional_info_items %} -->
|
|
|
|
<!-- We received these additional details -->
|
|
|
|
<!-- <br> -->
|
|
|
|
<!-- <p style="text-align: center;"> -->
|
|
|
|
<!-- {% for i,j in additional_info_items.items %} -->
|
|
|
|
|
|
|
|
<!-- <tr>
|
2024-06-18 18:23:57 +05:30
|
|
|
<td style="padding:8px 10px;color:#153643; ">{{ i }}:</td>
|
|
|
|
<td style="padding:8px 10px;color:#153643;">{{ j }}</td>
|
|
|
|
</tr> -->
|
2024-07-25 12:25:49 +05:30
|
|
|
<!-- {% 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>
|
2022-07-28 14:37:41 +05:30
|
|
|
|
2024-07-25 12:25:49 +05:30
|
|
|
<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>
|