Merge branch 'main' of https://github.com/CDC-IITDH/cdc-placement-website-backend into vnitin
BIN
CDC_Backend.zip
|
@ -13,6 +13,7 @@ urlpatterns = [
|
|||
path('getApplications/', adminViews.getApplications, name="Get Applications"),
|
||||
path("submitApplication/", adminViews.submitApplication, name="Submit Application"),
|
||||
path('generateCSV/', adminViews.generateCSV, name="Generate CSV"),
|
||||
path('downloadResume/', adminViews.downloadResume, name="Download Resume"),
|
||||
path('addPPO/', adminViews.addPPO, name="Add PPO"),
|
||||
path('getStudentApplication/', adminViews.getStudentApplication, name="Get student application"),
|
||||
path('getStats/', adminViews.getStats, name="Get Stats"),
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
import csv
|
||||
import zipfile
|
||||
|
||||
from rest_framework.decorators import api_view
|
||||
|
||||
|
@ -458,6 +459,43 @@ def generateCSV(request, id, email, user_type):
|
|||
status=status.HTTP_400_BAD_REQUEST)
|
||||
|
||||
|
||||
@api_view(['POST'])
|
||||
@isAuthorized(allowed_users=[ADMIN])
|
||||
@precheck(required_data=[OPENING_ID])
|
||||
def downloadResume(request, id, email, user_type):
|
||||
try:
|
||||
data = request.data
|
||||
if OPENING_TYPE in data:
|
||||
opening_type= data[OPENING_TYPE]
|
||||
else:
|
||||
opening_type= "Placement"
|
||||
if opening_type == "Internship":
|
||||
opening = get_object_or_404(Internship, id=data[OPENING_ID])
|
||||
applications = InternshipApplication.objects.filter(internship=opening)
|
||||
else:
|
||||
opening = get_object_or_404(Placement, id=data[OPENING_ID])
|
||||
applications = PlacementApplication.objects.filter(placement=opening)
|
||||
zip_filename = generateRandomString() + ".zip"
|
||||
if not os.path.isdir(STORAGE_DESTINATION_RESUME_ZIP):
|
||||
os.makedirs(STORAGE_DESTINATION_RESUME_ZIP, exist_ok=True)
|
||||
resumes = {}
|
||||
for apl in applications:
|
||||
if apl.selected:
|
||||
resumes[apl.student.roll_no] = STORAGE_DESTINATION_RESUMES + apl.student.id + '/' + apl.resume # Check if the folder name is student id or user id
|
||||
|
||||
with zipfile.ZipFile(STORAGE_DESTINATION_RESUME_ZIP + zip_filename, 'w', zipfile.ZIP_DEFLATED) as zip_file:
|
||||
for student_roll_no, resume_path in resumes.items():
|
||||
zip_file.write(resume_path, os.path.basename(str(student_roll_no) + ".pdf"))
|
||||
|
||||
file_path = LINK_TO_RESUMES_ZIP + urllib.parse.quote_plus(zip_filename)
|
||||
return Response({'action': "Download resumes", 'message': "Resumes zip created", 'file': file_path},
|
||||
status=status.HTTP_200_OK)
|
||||
except:
|
||||
logger.warning("Create csv: " + str(sys.exc_info()))
|
||||
return Response({'action': "Create csv", 'message': "Something Went Wrong"},
|
||||
status=status.HTTP_400_BAD_REQUEST)
|
||||
|
||||
|
||||
@api_view(['POST'])
|
||||
@isAuthorized(allowed_users=[ADMIN])
|
||||
@precheck(required_data=[COMPANY_NAME, COMPENSATION_GROSS, OFFER_ACCEPTED, STUDENT_ID, DESIGNATION, TIER])
|
||||
|
|
|
@ -100,6 +100,7 @@ PLACEMENT_OPENING_URL = "https://cdc.iitdh.ac.in/portal/student/dashboard/placem
|
|||
LINK_TO_STORAGE_COMPANY_ATTACHMENT = "https://cdc.iitdh.ac.in/storage/Company_Attachments/"
|
||||
LINK_TO_STORAGE_RESUME = "https://cdc.iitdh.ac.in/storage/Resumes/"
|
||||
LINK_TO_APPLICATIONS_CSV = "https://cdc.iitdh.ac.in/storage/Application_CSV/"
|
||||
LINK_TO_RESUMES_ZIP = "https://cdc.iitdh.ac.in/storage/Resume_Zips/"
|
||||
LINK_TO_EMAIl_VERIFICATION_API = "https://cdc.iitdh.ac.in/portal/company/verifyEmail?token={token}"
|
||||
PDF_FILES_SERVING_ENDPOINT = 'https://cdc.iitdh.ac.in/storage/Company_Attachments/' # TODO: Change this to actual URL
|
||||
|
||||
|
@ -127,6 +128,7 @@ JNF_SMALLTEXT_MAX_CHARACTER_COUNT = 50
|
|||
STORAGE_DESTINATION_RESUMES = "./Storage/Resumes/"
|
||||
STORAGE_DESTINATION_COMPANY_ATTACHMENTS = './Storage/Company_Attachments/'
|
||||
STORAGE_DESTINATION_APPLICATION_CSV = './Storage/Application_CSV/'
|
||||
STORAGE_DESTINATION_RESUME_ZIP = './Storage/Resume_Zips/'
|
||||
|
||||
TOKEN = 'token'
|
||||
RESUME_FILE_NAME = 'resume_file_name'
|
||||
|
|
|
@ -1,90 +1,137 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
||||
<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">
|
||||
<title></title>
|
||||
<!--[if mso]>
|
||||
<noscript>
|
||||
<xml>
|
||||
<o:OfficeDocumentSettings>
|
||||
<o:PixelsPerInch>96</o:PixelsPerInch>
|
||||
</o:OfficeDocumentSettings>
|
||||
</xml>
|
||||
</noscript>
|
||||
<![endif]-->
|
||||
<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@500&display=swap" rel="stylesheet">
|
||||
<link rel="shortcut icon" href="favicon.ico"/>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
table, td, div, h1, p {
|
||||
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 !important;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body style="margin:0;padding:0;">
|
||||
<table role="presentation" style="width:100%;border-collapse:collapse;border:0;border-spacing:0;background:#ffffff;">
|
||||
<tr>
|
||||
<td align="center" style="padding:0;">
|
||||
<table role="presentation"
|
||||
style="width:602px;border-collapse:collapse;border:1px solid #334878;border-spacing:0;text-align:left;">
|
||||
<tr>
|
||||
<td align="center" style="padding:40px 0 30px 0;background:#334878;">
|
||||
<img src="https://drive.google.com/uc?id=1QTA6dB7jnsZfU1kzyUqfD_2V5xODpWFt" alt="" width="200"
|
||||
style="height:auto;display:block;"/>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding:36px 30px 42px 30px;">
|
||||
<table role="presentation"
|
||||
style="width:100%;border-collapse:collapse;border:0;border-spacing:0;">
|
||||
<tr>
|
||||
<td style="padding:0 0 36px 0;color:#153643;">
|
||||
|
||||
<p style="margin:0 0 12px 0;font-size:16px;line-height:24px;font-family: 'Roboto', sans-serif;">
|
||||
We have received your {{opening_type}} Notification for {{ designation }}. Kindly verify your email by clicking <a
|
||||
href="{{ one_time_link }}">here</a>.
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding:0;">
|
||||
<table role="presentation"
|
||||
style="width:100%;border-collapse:collapse;border:0;border-spacing:0;">
|
||||
<tr>
|
||||
<td style="width:260px;padding:0;vertical-align:top;color:#334878;">
|
||||
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding:30px;background:#334878;">
|
||||
<table role="presentation"
|
||||
style="width:100%;border-collapse:collapse;border:0;border-spacing:0;font-size:9px;font-family: 'Roboto', sans-serif;">
|
||||
<tr>
|
||||
<td style="padding:0;width:50%;" align="left">
|
||||
<p style="margin:0;font-size:14px;line-height:16px;font-family: 'Roboto', sans-serif;color:#ffffff;">
|
||||
® CDC,IIT Dharwad,2021<br/>
|
||||
</p>
|
||||
</td>
|
||||
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<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>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
|
|
@ -5,69 +5,188 @@
|
|||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<style>
|
||||
#details_table tr:nth-child(even) {
|
||||
background: #FFF
|
||||
body, table, td, div, p, h1 {
|
||||
font-family: 'Roboto', sans-serif;
|
||||
}
|
||||
|
||||
#details_table tr:nth-child(odd) {
|
||||
background: #bfe3f3
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background-color: #e1e4e8; /* Outer background color */
|
||||
}
|
||||
|
||||
#details_table td {
|
||||
padding: 10px;
|
||||
width: 50%;
|
||||
.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;
|
||||
}
|
||||
|
||||
#details_table {
|
||||
border: #334878 1px solid;
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
width: 80%;
|
||||
margin: auto;
|
||||
margin: 20px auto;
|
||||
font-size: 16px;
|
||||
}
|
||||
#details_table th, #details_table td {
|
||||
padding: 10px;
|
||||
border: 1px solid #dddddd;
|
||||
text-align: left;
|
||||
}
|
||||
#details_table th {
|
||||
background-color: #ff7350;
|
||||
color: #ffffff;
|
||||
}
|
||||
#details_table tr:nth-child(even) {
|
||||
background-color: #f2f2f2;
|
||||
}
|
||||
#details_table tr:nth-child(odd) {
|
||||
background-color: #ffffff;
|
||||
}
|
||||
#details_table ul {
|
||||
padding-left: 20px;
|
||||
margin: 0;
|
||||
}
|
||||
#details_table a {
|
||||
color: #334878;
|
||||
text-decoration: none;
|
||||
}
|
||||
.social-icons img {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
margin: 0 5px;
|
||||
}
|
||||
@media only screen and (max-width: 600px) {
|
||||
.inner-container .email-body, .email-footer {
|
||||
padding: 20px !important;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<title>Document</title>
|
||||
<title>Notification</title>
|
||||
</head>
|
||||
<body style="margin: 0;font-family: sans-serif;">
|
||||
<body>
|
||||
|
||||
<header style="background-color: #334878;"><img style="height: 3cm; margin: auto; display: block; padding: 0.5cm;"
|
||||
src='{{ imgpath }}' alt="cdc logo"></header>
|
||||
<h1 style="text-align: center;"> {{type}} Notification Form Response</h1>
|
||||
<table id="details_table">
|
||||
{% for key, value in data.items %}
|
||||
<tr>
|
||||
<td>
|
||||
{{ key }}
|
||||
</td>
|
||||
<td>
|
||||
{% if 'list' in value.type %}
|
||||
<div class="email-wrapper">
|
||||
<div class="email-container">
|
||||
|
||||
{% for item in value.details %}
|
||||
<li>
|
||||
{% if 'link' in value.type and value.link %}
|
||||
<a href="{{ value.link|add:item}}">{{ item|slice:"16:" }}</a>
|
||||
{% elif 'link' in value.type %}
|
||||
<a href="{{ item }}">{{ item }}</a>
|
||||
{% else %}
|
||||
{{ item }}
|
||||
{% endif %}
|
||||
</li>
|
||||
{% endfor %}
|
||||
{% else %}
|
||||
{% if 'link' in value.type %}
|
||||
<a href="{{ value.details }}">{{ value.details }}</a>
|
||||
{% else %}
|
||||
{{ value }}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
<div class="email-header">
|
||||
<img src="./images/CDC-Logo.png" alt="CDC Logo" style="width: 35%; height: auto; display: block; margin: 0 auto;" />
|
||||
</div>
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
<p style="margin-left: 10%;">In case of any descripency regarding above details, please contact <a
|
||||
href="mailto:cdc@iitdh.ac.in">cdc@iitdh.ac.in</a>
|
||||
<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;" />
|
||||
<h2 style="text-align: center;">{{type}} Notification Form Response</h2>
|
||||
<p style="text-align: center;">
|
||||
<table id="details_table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Key</th>
|
||||
<th>Value</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% for key, value in data.items %}
|
||||
<tr>
|
||||
<td>{{ key }}</td>
|
||||
<td>
|
||||
{% if 'list' in value.type %}
|
||||
<ul>
|
||||
{% for item in value.details %}
|
||||
<li>
|
||||
{% if 'link' in value.type and value.link %}
|
||||
<a href="{{ value.link|add:item }}" target="_blank">{{ item|slice:"16:" }}</a>
|
||||
{% elif 'link' in value.type %}
|
||||
<a href="{{ item }}" target="_blank">{{ item }}</a>
|
||||
{% else %}
|
||||
{{ item }}
|
||||
{% endif %}
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% else %}
|
||||
{% if 'link' in value.type %}
|
||||
<a href="{{ value.details }}" target="_blank">{{ value.details }}</a>
|
||||
{% else %}
|
||||
{{ value }}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
In case of any discrepancy regarding the above details, please contact <a href="mailto:cdc@iitdh.ac.in">cdc@iitdh.ac.in</a>.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</p>
|
||||
<div class="email-footer">
|
||||
<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">
|
||||
</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">
|
||||
</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">
|
||||
</a>
|
||||
</div>
|
||||
<p style="color: #555555;">© 2024 CDC, all rights reserved</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -18,118 +18,146 @@
|
|||
<link rel="shortcut icon" href="favicon.ico"/>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
table, td, div, h1, p {
|
||||
body, table, td, div, h1, p {
|
||||
font-family: 'Roboto', sans-serif;
|
||||
}
|
||||
|
||||
#details_table tr:nth-child(even) {
|
||||
background: #FFF
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#details_table tr:nth-child(odd) {
|
||||
background: #f9f9f9
|
||||
.email-wrapper {
|
||||
width: 100%;
|
||||
background-color: #ffffff;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
#details_table td {
|
||||
padding: 10px
|
||||
.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 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 p {
|
||||
margin: 0 0 12px 0;
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
color: #153643;
|
||||
}
|
||||
|
||||
#details_table {
|
||||
border: #334878 1px solid;
|
||||
width: 100%;
|
||||
border: 1px solid #334878;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
#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 !important;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body style="margin:0;padding:0;">
|
||||
<table role="presentation" style="width:100%;border-collapse:collapse;border:0;border-spacing:0;background:#ffffff;">
|
||||
<tr>
|
||||
<td align="center" style="padding:0;">
|
||||
<table role="presentation"
|
||||
style="width:602px;border-collapse:collapse;border:1px solid #334878;border-spacing:0;text-align:left;">
|
||||
<tr>
|
||||
<td align="center" style="padding:40px 0 30px 0;background:#334878;">
|
||||
<img src="https://drive.google.com/uc?id=1QTA6dB7jnsZfU1kzyUqfD_2V5xODpWFt" alt="" width="200"
|
||||
style="height:auto;display:block;"/>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding:36px 30px 42px 30px;">
|
||||
<table role="presentation"
|
||||
style="width:100%;border-collapse:collapse;border:0;border-spacing:0;">
|
||||
<tr>
|
||||
<td style="padding:0 0 36px 0;color:#153643;">
|
||||
<h1 style="font-size:24px;margin:0 0 20px 0;font-family: 'Roboto', sans-serif;
|
||||
">Thank You for filling the form</h1>
|
||||
<p style="margin:0 0 12px 0;font-size:16px;line-height:24px;font-family: 'Roboto', sans-serif;">
|
||||
We have received your <b>{{ opening_type }}</b> notification for a
|
||||
<b>{{ designation }}</b> offer at <b>
|
||||
{{ company_name }}</b>.
|
||||
</p>
|
||||
<p style="margin:0 0 12px 0;font-size:16px;line-height:24px;font-family: 'Roboto', sans-serif;">
|
||||
We will keep you informed with the updates. If you have any queries, please
|
||||
feel 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>
|
||||
<td>
|
||||
{% if 'list' in value.type %}
|
||||
|
||||
{% for item in value.details %}
|
||||
<li>
|
||||
{% if 'link' in value.type and value.link %}
|
||||
<a href="{{ value.link|add:item}}">{{ item }}</a>
|
||||
{% elif 'link' in value.type %}
|
||||
<a href="{{ item }}">{{ item }}</a>
|
||||
{% else %}
|
||||
{{ item }}
|
||||
{% endif %}
|
||||
</li>
|
||||
{% endfor %}
|
||||
{% else %}
|
||||
{% if 'link' in value.type %}
|
||||
<a href="{{ value.details }}">{{ value.details }}</a>
|
||||
{% else %}
|
||||
{{ value }}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
<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">
|
||||
{% for key, value in data.items %}
|
||||
<tr>
|
||||
<td>{{ key }}</td>
|
||||
<td>
|
||||
{% if 'list' in value.type %}
|
||||
<ul>
|
||||
{% for item in value.details %}
|
||||
<li>{% if 'link' in value.type and value.link %}<a href="{{ value.link|add:item}}">{{ item }}</a>{% elif 'link' in value.type %}<a href="{{ item }}">{{ item }}</a>{% else %}{{ item }}{% endif %}</li>
|
||||
{% endfor %}
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding:30px;background:#334878;">
|
||||
<table role="presentation"
|
||||
style="width:100%;border-collapse:collapse;border:0;border-spacing:0;font-size:9px;font-family: 'Roboto', sans-serif;">
|
||||
<tr>
|
||||
<td style="padding:0;width:50%;" align="left">
|
||||
<p style="margin:0;font-size:14px;line-height:16px;font-family: 'Roboto', sans-serif;color:#ffffff;">
|
||||
® CDC,IIT Dharwad,2021<br/>
|
||||
</p>
|
||||
</td>
|
||||
|
||||
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</ul>
|
||||
{% else %}
|
||||
{% if 'link' in value.type %}<a href="{{ value.details }}">{{ value.details }}</a>{% else %}{{ value }}{% endif %}
|
||||
{% endif %}
|
||||
</td>
|
||||
</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>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
|
Before Width: | Height: | Size: 45 KiB |
After Width: | Height: | Size: 186 KiB |
After Width: | Height: | Size: 164 KiB |
After Width: | Height: | Size: 6.2 KiB |
After Width: | Height: | Size: 1.3 MiB |
After Width: | Height: | Size: 10 KiB |
After Width: | Height: | Size: 8.8 KiB |
After Width: | Height: | Size: 18 KiB |
After Width: | Height: | Size: 96 KiB |
After Width: | Height: | Size: 19 KiB |
After Width: | Height: | Size: 40 KiB |
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 23 KiB |
After Width: | Height: | Size: 25 KiB |
After Width: | Height: | Size: 4.6 KiB |
|
@ -18,70 +18,133 @@
|
|||
<link rel="shortcut icon" href="favicon.ico"/>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
table, td, div, h1, p {
|
||||
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 !important;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body style="margin:0;padding:0;">
|
||||
<table role="presentation" style="width:100%;border-collapse:collapse;border:0;border-spacing:0;background:#ffffff;">
|
||||
<body class="email-wrapper">
|
||||
<table role="presentation" class="email-container">
|
||||
<tr>
|
||||
<td align="center" style="padding:0;">
|
||||
<table role="presentation"
|
||||
style="width:602px;border-collapse:collapse;border:1px solid #334878;border-spacing:0;text-align:left;">
|
||||
<tr>
|
||||
<td align="center" style="padding:40px 0 30px 0;background:#334878;">
|
||||
<img src="https://drive.google.com/uc?id=1QTA6dB7jnsZfU1kzyUqfD_2V5xODpWFt" alt="" width="200"
|
||||
style="height:auto;display:block;"/>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding:36px 30px 42px 30px;">
|
||||
<table role="presentation"
|
||||
style="width:100%;border-collapse:collapse;border:0;border-spacing:0;">
|
||||
<tr>
|
||||
<td style="padding:0 0 36px 0;color:#153643;">
|
||||
<h1 style="font-size:24px;margin:0 0 20px 0;font-family: 'Roboto', sans-serif;
|
||||
">{{ opening_type }} Opportunity at {{ company_name }}</h1>
|
||||
<p style="margin:0 0 12px 0;font-size:16px;line-height:24px;font-family: 'Roboto', sans-serif;">
|
||||
<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/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 !
|
||||
</p>
|
||||
<p style="text-indent: 4ch; margin:0 0 12px 0;font-size:16px;line-height:24px;font-family: 'Roboto', sans-serif;">
|
||||
CDC is excited to announce that <b>{{ company_name }}</b> is interested in
|
||||
recruiting <b>{{ designation }}</b> from IIT Dharwad.
|
||||
More details can be found in the CDC Web Portal.
|
||||
Interested students can apply before <b>{{ deadline }}</b> in the CDC-Web Portal</p>
|
||||
<p style="text-align: center;">
|
||||
<a
|
||||
href="{{ 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;">CDC Web Portal</a>.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<p style="margin:0 0 12px 0;font-size:16px;line-height:24px;font-family: 'Roboto', sans-serif;">
|
||||
Interested students can apply before <b>{{ deadline }}</b> in the <a
|
||||
href="{{ link }}">CDC-Web Portal</a>.
|
||||
</p>
|
||||
<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>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding:30px;background:#334878;">
|
||||
<table role="presentation"
|
||||
style="width:100%;border-collapse:collapse;border:0;border-spacing:0;font-size:9px;font-family: 'Roboto', sans-serif;">
|
||||
<tr>
|
||||
<td style="padding:0;width:50%;" align="left">
|
||||
<p style="margin:0;font-size:14px;line-height:16px;font-family: 'Roboto', sans-serif;color:#ffffff;">
|
||||
® CDC,IIT Dharwad,2022<br/>
|
||||
</p>
|
||||
</td>
|
||||
|
||||
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -18,100 +18,145 @@
|
|||
<link rel="shortcut icon" href="favicon.ico"/>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
table, td, div, h1, p {
|
||||
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 !important;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body style="margin:0;padding:0;">
|
||||
<table role="presentation" style="width:100%;border-collapse:collapse;border:0;border-spacing:0;background:#ffffff;">
|
||||
<body>
|
||||
<div class="email-wrapper">
|
||||
<table role="presentation" class="email-container">
|
||||
<tr>
|
||||
<td align="center" style="padding:0;">
|
||||
<table role="presentation"
|
||||
style="width:602px;border-collapse:collapse;border:1px solid #334878;border-spacing:0;text-align:left;">
|
||||
<tr>
|
||||
<td align="center" style="padding:40px 0 30px 0;background:#334878;">
|
||||
<img src="https://drive.google.com/uc?id=1QTA6dB7jnsZfU1kzyUqfD_2V5xODpWFt" alt="" width="200"
|
||||
style="height:auto;display:block;"/>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding:36px 30px 42px 30px;">
|
||||
<table role="presentation"
|
||||
style="width:100%;border-collapse:collapse;border:0;border-spacing:0;">
|
||||
<tr>
|
||||
<td style="padding:0 0 36px 0;color:#153643;">
|
||||
<h1 style="font-size:24px;margin:0 0 20px 0;font-family: 'Roboto', sans-serif;
|
||||
">Hello, Folks</h1>
|
||||
<p style="margin:0 0 12px 0;font-size:16px;line-height:24px;font-family: 'Roboto', sans-serif;">
|
||||
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>
|
||||
<p style="margin:0 0 12px 0;font-size:16px;line-height:24px;font-family:
|
||||
'Roboto', sans-serif;text-align: center">
|
||||
<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/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>
|
||||
<td style="padding:8px 10px;color:#153643; ">{{ i }}:</td>
|
||||
<td style="padding:8px 10px;color:#153643;">{{ j }}</td>
|
||||
</tr> -->
|
||||
{% endfor %}
|
||||
<!-- </table> -->
|
||||
{% endif %}
|
||||
|
||||
<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>
|
||||
<td style="padding:8px 10px;color:#153643; ">{{ i }}:</td>
|
||||
<td style="padding:8px 10px;color:#153643;">{{ j }}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
{% endif %}
|
||||
|
||||
</p>
|
||||
</p>
|
||||
<p style="margin:0 0 12px 0;font-size:16px;line-height:24px;font-family: 'Roboto', sans-serif;">
|
||||
please look into it and take necessary actions.
|
||||
get in touch with the student at at <nobr><u>{{ email }}</u></nobr>
|
||||
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding:0;">
|
||||
<table role="presentation"
|
||||
style="width:100%;border-collapse:collapse;border:0;border-spacing:0;">
|
||||
<tr>
|
||||
<td style="width:260px;padding:0;vertical-align:top;color:#334878;">
|
||||
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
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>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding:30px;background:#334878;">
|
||||
<table role="presentation"
|
||||
style="width:100%;border-collapse:collapse;border:0;border-spacing:0;font-size:9px;font-family: 'Roboto', sans-serif;">
|
||||
<tr>
|
||||
<td style="padding:0;width:50%;" align="left">
|
||||
<p style="margin:0;font-size:14px;line-height:16px;font-family: 'Roboto', sans-serif;color:#ffffff;">
|
||||
® CDC,IIT Dharwad,2021<br/>
|
||||
</p>
|
||||
</td>
|
||||
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -18,69 +18,126 @@
|
|||
<link rel="shortcut icon" href="favicon.ico"/>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
table, td, div, h1, p {
|
||||
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 !important;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body style="margin:0;padding:0;">
|
||||
<table role="presentation" style="width:100%;border-collapse:collapse;border:0;border-spacing:0;background:#ffffff;">
|
||||
<body>
|
||||
<div class="email-wrapper">
|
||||
<table role="presentation" class="email-container">
|
||||
<tr>
|
||||
<td align="center" style="padding:0;">
|
||||
<table role="presentation"
|
||||
style="width:602px;border-collapse:collapse;border:1px solid #334878;border-spacing:0;text-align:left;">
|
||||
<tr>
|
||||
<td align="center" style="padding:40px 0 30px 0;background:#334878;">
|
||||
<img src="https://drive.google.com/uc?id=1QTA6dB7jnsZfU1kzyUqfD_2V5xODpWFt" alt="" width="200"
|
||||
style="height:auto;display:block;"/>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding:36px 30px 42px 30px;">
|
||||
<table role="presentation"
|
||||
style="width:100%;border-collapse:collapse;border:0;border-spacing:0;">
|
||||
<tr>
|
||||
<td style="padding:0 0 36px 0;color:#153643;">
|
||||
<h1 style="font-size:24px;margin:0 0 20px 0;font-family: 'Roboto', sans-serif;
|
||||
">Hey, {{ student_name }}</h1>
|
||||
<p style="margin:0 0 12px 0;font-size:16px;line-height:24px;font-family: 'Roboto', sans-serif;">
|
||||
<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/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.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding:0;">
|
||||
<table role="presentation"
|
||||
style="width:100%;border-collapse:collapse;border:0;border-spacing:0;">
|
||||
<tr>
|
||||
<td style="width:260px;padding:0;vertical-align:top;color:#334878;">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</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>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding:30px;background:#334878;">
|
||||
<table role="presentation"
|
||||
style="width:100%;border-collapse:collapse;border:0;border-spacing:0;font-size:9px;font-family: 'Roboto', sans-serif;">
|
||||
<tr>
|
||||
<td style="padding:0;width:50%;" align="left">
|
||||
<p style="margin:0;font-size:14px;line-height:16px;font-family: 'Roboto', sans-serif;color:#ffffff;">
|
||||
® CDC,IIT Dharwad,2021<br/>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -18,68 +18,122 @@
|
|||
<link rel="shortcut icon" href="favicon.ico"/>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
table, td, div, h1, p {
|
||||
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 !important;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body style="margin:0;padding:0;">
|
||||
<table role="presentation" style="width:100%;border-collapse:collapse;border:0;border-spacing:0;background:#ffffff;">
|
||||
<body>
|
||||
<div class="email-wrapper">
|
||||
<table role="presentation" class="email-container">
|
||||
<tr>
|
||||
<td align="center" style="padding:0;">
|
||||
<table role="presentation"
|
||||
style="width:602px;border-collapse:collapse;border:1px solid #334878;border-spacing:0;text-align:left;">
|
||||
<tr>
|
||||
<td align="center" style="padding:40px 0 30px 0;background:#334878;">
|
||||
<img src="https://drive.google.com/uc?id=1QTA6dB7jnsZfU1kzyUqfD_2V5xODpWFt" alt="" width="200"
|
||||
style="height:auto;display:block;"/>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding:36px 30px 42px 30px;">
|
||||
<table role="presentation"
|
||||
style="width:100%;border-collapse:collapse;border:0;border-spacing:0;">
|
||||
<tr>
|
||||
<td style="padding:0 0 36px 0;color:#153643;">
|
||||
<h1 style="font-size:24px;margin:0 0 20px 0;font-family: 'Roboto', sans-serif;
|
||||
">Hey, {{ student_name }}</h1>
|
||||
<p style="margin:0 0 12px 0;font-size:16px;line-height:24px;font-family: 'Roboto', sans-serif;">
|
||||
Congratulations, You have been selected for the <b>{{ designation }}</b> at
|
||||
<b>{{ company_name }}</b>.<br>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding:0;">
|
||||
<table role="presentation"
|
||||
style="width:100%;border-collapse:collapse;border:0;border-spacing:0;">
|
||||
<tr>
|
||||
<td style="width:260px;padding:0;vertical-align:top;color:#334878;">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<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="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>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding:30px;background:#334878;">
|
||||
<table role="presentation"
|
||||
style="width:100%;border-collapse:collapse;border:0;border-spacing:0;font-size:9px;font-family: 'Roboto', sans-serif;">
|
||||
<tr>
|
||||
<td style="padding:0;width:50%;" align="left">
|
||||
<p style="margin:0;font-size:14px;line-height:16px;font-family: 'Roboto', sans-serif;color:#ffffff;">
|
||||
® CDC,IIT Dharwad,2021<br/>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -18,101 +18,146 @@
|
|||
<link rel="shortcut icon" href="favicon.ico"/>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
table, td, div, h1, p {
|
||||
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 !important;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body style="margin:0;padding:0;">
|
||||
<table role="presentation" style="width:100%;border-collapse:collapse;border:0;border-spacing:0;background:#ffffff;">
|
||||
<body>
|
||||
<div class="email-wrapper">
|
||||
<table role="presentation" class="email-container">
|
||||
<tr>
|
||||
<td align="center" style="padding:0;">
|
||||
<table role="presentation"
|
||||
style="width:602px;border-collapse:collapse;border:1px solid #334878;border-spacing:0;text-align:left;">
|
||||
<tr>
|
||||
<td align="center" style="padding:40px 0 30px 0;background:#334878;">
|
||||
<img src="https://drive.google.com/uc?id=1QTA6dB7jnsZfU1kzyUqfD_2V5xODpWFt" alt="" width="200"
|
||||
style="height:auto;display:block;"/>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding:36px 30px 42px 30px;">
|
||||
<table role="presentation"
|
||||
style="width:100%;border-collapse:collapse;border:0;border-spacing:0;">
|
||||
<tr>
|
||||
<td style="padding:0 0 36px 0;color:#153643;">
|
||||
<h1 style="font-size:24px;margin:0 0 20px 0;font-family: 'Roboto', sans-serif;
|
||||
">Hello, {{ name }}</h1>
|
||||
<p style="margin:0 0 12px 0;font-size:16px;line-height:24px;font-family: 'Roboto', sans-serif;">
|
||||
<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/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>
|
||||
<p style="margin:0 0 12px 0;font-size:16px;line-height:24px;font-family:
|
||||
'Roboto', sans-serif;text-align: center">
|
||||
|
||||
|
||||
<table style="border:solid 1px; margin: auto; text-align: center;width: 80%;
|
||||
border-radius:15px; background-color: #e0e3ee">
|
||||
<!-- <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>
|
||||
<td style="padding:8px 10px;color:#153643; ">{{ i }}:</td>
|
||||
<td style="padding:8px 10px;color:#153643;">{{ j }}</td>
|
||||
</tr>
|
||||
<!-- <tr> -->
|
||||
<!-- <td style="padding:8px 10px;color:#153643; ">{{ i }}:</td> -->
|
||||
<!-- <td style="padding:8px 10px;color:#153643;">{{ j }}</td> -->
|
||||
<!-- </tr> -->
|
||||
{% endfor %}
|
||||
</table>
|
||||
<!-- </table> -->
|
||||
{% endif %}
|
||||
|
||||
</p>
|
||||
</p>
|
||||
<p style="margin:0 0 12px 0;font-size:16px;line-height:24px;font-family: 'Roboto', sans-serif;">
|
||||
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>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding:0;">
|
||||
<table role="presentation"
|
||||
style="width:100%;border-collapse:collapse;border:0;border-spacing:0;">
|
||||
<tr>
|
||||
<td style="width:260px;padding:0;vertical-align:top;color:#334878;">
|
||||
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</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>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding:30px;background:#334878;">
|
||||
<table role="presentation"
|
||||
style="width:100%;border-collapse:collapse;border:0;border-spacing:0;font-size:9px;font-family: 'Roboto', sans-serif;">
|
||||
<tr>
|
||||
<td style="padding:0;width:50%;" align="left">
|
||||
<p style="margin:0;font-size:14px;line-height:16px;font-family: 'Roboto', sans-serif;color:#ffffff;">
|
||||
® CDC,IIT Dharwad,2021<br/>
|
||||
</p>
|
||||
</td>
|
||||
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -18,107 +18,152 @@
|
|||
<link rel="shortcut icon" href="favicon.ico"/>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
table, td, div, h1, p {
|
||||
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 !important;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body style="margin:0;padding:0;">
|
||||
<table role="presentation" style="width:100%;border-collapse:collapse;border:0;border-spacing:0;background:#ffffff;">
|
||||
<body>
|
||||
<div class="email-wrapper">
|
||||
<table role="presentation" class="email-container">
|
||||
<tr>
|
||||
<td align="center" style="padding:0;">
|
||||
<table role="presentation"
|
||||
style="width:602px;border-collapse:collapse;border:1px solid #334878;border-spacing:0;text-align:left;">
|
||||
<tr>
|
||||
<td align="center" style="padding:40px 0 30px 0;background:#334878;">
|
||||
<img src="https://drive.google.com/uc?id=1QTA6dB7jnsZfU1kzyUqfD_2V5xODpWFt" alt="" width="200"
|
||||
style="height:auto;display:block;"/>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding:36px 30px 42px 30px;">
|
||||
<table role="presentation"
|
||||
style="width:100%;border-collapse:collapse;border:0;border-spacing:0;">
|
||||
<tr>
|
||||
<td style="padding:0 0 36px 0;color:#153643;">
|
||||
<h1 style="font-size:24px;margin:0 0 20px 0;font-family: 'Roboto', sans-serif;
|
||||
">Hello, {{ name }}</h1>
|
||||
<p style="margin:0 0 12px 0;font-size:16px;line-height:24px;font-family: 'Roboto', sans-serif;">
|
||||
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>
|
||||
<td style="padding:8px 10px;color:#153643;">{{ resume }}</td>
|
||||
</tr>
|
||||
</table>
|
||||
<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/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>
|
||||
<td style="padding:8px 10px;color:#153643;">{{ resume }}</td>
|
||||
</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>
|
||||
<td style="padding:8px 10px;color:#153643; ">{{ i }}:</td>
|
||||
<td style="padding:8px 10px;color:#153643;">{{ j }}</td>
|
||||
</tr> -->
|
||||
<!-- {% endfor %} -->
|
||||
<!-- </table> -->
|
||||
<!-- {% endif %} -->
|
||||
|
||||
{% if additional_info_items %}
|
||||
We received these additional details
|
||||
<br>
|
||||
<table style="border:solid 1px; margin: auto; text-align: center;width: 80%;
|
||||
border-radius:15px; background-color: #e0e3ee">
|
||||
<p style="margin:0 0 12px 0;font-size:16px;line-height:24px;font-family:
|
||||
'Roboto', sans-serif;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 %}
|
||||
|
||||
</p>
|
||||
</p>
|
||||
<p style="margin:0 0 12px 0;font-size:16px;line-height:24px;font-family: 'Roboto', sans-serif;">
|
||||
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>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding:0;">
|
||||
<table role="presentation"
|
||||
style="width:100%;border-collapse:collapse;border:0;border-spacing:0;">
|
||||
<tr>
|
||||
<td style="width:260px;padding:0;vertical-align:top;color:#334878;">
|
||||
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
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>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding:30px;background:#334878;">
|
||||
<table role="presentation"
|
||||
style="width:100%;border-collapse:collapse;border:0;border-spacing:0;font-size:9px;font-family: 'Roboto', sans-serif;">
|
||||
<tr>
|
||||
<td style="padding:0;width:50%;" align="left">
|
||||
<p style="margin:0;font-size:14px;line-height:16px;font-family: 'Roboto', sans-serif;color:#ffffff;">
|
||||
® CDC,IIT Dharwad,2021<br/>
|
||||
</p>
|
||||
</td>
|
||||
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -18,101 +18,145 @@
|
|||
<link rel="shortcut icon" href="favicon.ico"/>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
table, td, div, h1, p {
|
||||
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 !important;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body style="margin:0;padding:0;">
|
||||
<table role="presentation" style="width:100%;border-collapse:collapse;border:0;border-spacing:0;background:#ffffff;">
|
||||
<body>
|
||||
<div class="email-wrapper">
|
||||
<table role="presentation" class="email-container">
|
||||
<tr>
|
||||
<td align="center" style="padding:0;">
|
||||
<table role="presentation"
|
||||
style="width:602px;border-collapse:collapse;border:1px solid #334878;border-spacing:0;text-align:left;">
|
||||
<tr>
|
||||
<td align="center" style="padding:40px 0 30px 0;background:#334878;">
|
||||
<img src="https://drive.google.com/uc?id=1QTA6dB7jnsZfU1kzyUqfD_2V5xODpWFt" alt="" width="200"
|
||||
style="height:auto;display:block;"/>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding:36px 30px 42px 30px;">
|
||||
<table role="presentation"
|
||||
style="width:100%;border-collapse:collapse;border:0;border-spacing:0;">
|
||||
<tr>
|
||||
<td style="padding:0 0 36px 0;color:#153643;">
|
||||
<h1 style="font-size:24px;margin:0 0 20px 0;font-family: 'Roboto', sans-serif;
|
||||
">Hello, {{ name }}</h1>
|
||||
<p style="margin:0 0 12px 0;font-size:16px;line-height:24px;font-family: 'Roboto', sans-serif;">
|
||||
We have received your issue regarding a <b>{{ application_type }}</b> opening at
|
||||
<b>
|
||||
{{ company_name }}</b>.
|
||||
{% if additional_info %}
|
||||
We received these additional details
|
||||
<br>
|
||||
<p style="margin:0 0 12px 0;font-size:16px;line-height:24px;font-family:
|
||||
'Roboto', sans-serif;text-align: center">
|
||||
|
||||
<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>
|
||||
<td style="padding:8px 10px;color:#153643; ">{{ i }}:</td>
|
||||
<td style="padding:8px 10px;color:#153643;">{{ j }}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
{% endif %}
|
||||
|
||||
</p>
|
||||
</p>
|
||||
<p style="margin:0 0 12px 0;font-size:16px;line-height:24px;font-family: 'Roboto', sans-serif;">
|
||||
We will get back to you if we find it legitimate. If you have any queries, please
|
||||
feel to
|
||||
write to
|
||||
<nobr><u>cdc.support@iitdh.ac.in</u></nobr>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding:0;">
|
||||
<table role="presentation"
|
||||
style="width:100%;border-collapse:collapse;border:0;border-spacing:0;">
|
||||
<tr>
|
||||
<td style="width:260px;padding:0;vertical-align:top;color:#334878;">
|
||||
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<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/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;">
|
||||
We have received your issue regarding a <b>{{ application_type }}</b> opening at
|
||||
<b>
|
||||
{{ company_name }}</b>.
|
||||
{% 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>
|
||||
<td style="padding:8px 10px;color:#153643; ">{{ i }}:</td>
|
||||
<td style="padding:8px 10px;color:#153643;">{{ j }}</td>
|
||||
</tr> -->
|
||||
{% endfor %}
|
||||
<!-- </table> -->
|
||||
{% endif %}
|
||||
We will get back to you if we find it legitimate. 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>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding:30px;background:#334878;">
|
||||
<table role="presentation"
|
||||
style="width:100%;border-collapse:collapse;border:0;border-spacing:0;font-size:9px;font-family: 'Roboto', sans-serif;">
|
||||
<tr>
|
||||
<td style="padding:0;width:50%;" align="left">
|
||||
<p style="margin:0;font-size:14px;line-height:16px;font-family: 'Roboto', sans-serif;color:#ffffff;">
|
||||
® CDC,IIT Dharwad,2021<br/>
|
||||
</p>
|
||||
</td>
|
||||
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -18,60 +18,128 @@
|
|||
<link rel="shortcut icon" href="favicon.ico"/>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
table, td, div, h1, p {
|
||||
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 h4 {
|
||||
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 !important;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body style="margin:0;padding:0;">
|
||||
<table role="presentation" style="width:100%;border-collapse:collapse;border:0;border-spacing:0;background:#ffffff;">
|
||||
<tr>
|
||||
<td align="center" style="padding:0;">
|
||||
<table role="presentation"
|
||||
style="width:602px;border-collapse:collapse;border:1px solid #334878;border-spacing:0;text-align:left;">
|
||||
<body>
|
||||
<div class="email-wrapper">
|
||||
<table role="presentation" class="email-container">
|
||||
<tr>
|
||||
<td align="center" style="padding:40px 0 30px 0;background:#334878;">
|
||||
<img src="https://drive.google.com/uc?id=1QTA6dB7jnsZfU1kzyUqfD_2V5xODpWFt" alt="" width="200"
|
||||
style="height:auto;display:block;"/>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding:36px 30px 42px 30px;">
|
||||
<table role="presentation"
|
||||
style="width:100%;border-collapse:collapse;border:0;border-spacing:0;">
|
||||
<tr>
|
||||
<td style="padding:0 0 36px 0;color:#153643;">
|
||||
<h1 style="font-size:24px;margin:0 0 20px 0;font-family: 'Roboto', sans-serif;
|
||||
">{{ opening_type }} Opportunity at {{ company_name }}</h1>
|
||||
<p style="margin:0 0 12px 0;font-size:16px;line-height:24px;font-family: 'Roboto', sans-serif;">
|
||||
<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/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.
|
||||
Interested students can apply before <b>{{ deadline }}</b> in the <a
|
||||
href="{{ link }}">CDC-webportal</a>.
|
||||
Interested students can apply before <b>{{ deadline }}</b> in the CDC-webportal</p>
|
||||
<p style="text-align: center;"> <a
|
||||
href="{{ 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;">CDC web portal</a>.
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding:30px;background:#334878;">
|
||||
<table role="presentation"
|
||||
style="width:100%;border-collapse:collapse;border:0;border-spacing:0;font-size:9px;font-family: 'Roboto', sans-serif;">
|
||||
<tr>
|
||||
<td style="padding:0;width:50%;" align="left">
|
||||
<p style="margin:0;font-size:14px;line-height:16px;font-family: 'Roboto', sans-serif;color:#ffffff;">
|
||||
® CDC,IIT Dharwad,2022<br/>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
</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>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|