first commit

This commit is contained in:
2025-12-31 06:07:37 -06:00
commit a25b81224e
39 changed files with 2785 additions and 0 deletions

View File

@@ -0,0 +1,210 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
body {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
line-height: 1.5;
color: #333;
max-width: 600px;
margin: 0 auto;
padding: 0;
background-color: #f4f4f4;
}
.container {
background-color: #ffffff;
}
.header {
background-color: #fff;
padding: 20px 30px;
border-bottom: 4px solid #ffc829;
}
.logo {
height: 32px;
}
.content {
padding: 30px;
}
.document-icon {
text-align: center;
margin: 20px 0;
}
.document-icon img {
width: 80px;
}
.doc-placeholder {
width: 80px;
height: 100px;
background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
border: 1px solid #ddd;
border-radius: 4px;
margin: 0 auto;
position: relative;
}
.doc-placeholder::after {
content: "PDF";
position: absolute;
bottom: 8px;
left: 50%;
transform: translateX(-50%);
font-size: 12px;
color: #c00;
font-weight: bold;
}
.doc-placeholder::before {
content: "";
position: absolute;
top: 0;
right: 0;
width: 0;
height: 0;
border-style: solid;
border-width: 0 20px 20px 0;
border-color: transparent #ddd transparent transparent;
}
.title {
font-size: 20px;
font-weight: 600;
color: #333;
text-align: center;
margin: 20px 0 10px;
}
.sender-info {
text-align: center;
color: #666;
font-size: 14px;
margin-bottom: 25px;
}
.sender-info strong {
color: #333;
}
.button-container {
text-align: center;
margin: 25px 0;
}
.button {
display: inline-block;
background-color: #ffc829;
color: #333 !important;
padding: 14px 40px;
text-decoration: none;
border-radius: 4px;
font-size: 16px;
font-weight: 600;
text-transform: uppercase;
}
.button:hover {
background-color: #e6b625;
}
.details {
background-color: #f9f9f9;
border: 1px solid #e5e5e5;
border-radius: 4px;
padding: 15px 20px;
margin: 20px 0;
font-size: 13px;
}
.details-row {
display: flex;
margin: 5px 0;
}
.details-label {
color: #666;
width: 120px;
}
.details-value {
color: #333;
}
.message-box {
background-color: #f0f7ff;
border-left: 4px solid #0077cc;
padding: 15px;
margin: 20px 0;
font-size: 14px;
}
.footer {
background-color: #f9f9f9;
padding: 20px 30px;
font-size: 11px;
color: #666;
border-top: 1px solid #e5e5e5;
}
.footer a {
color: #0077cc;
text-decoration: none;
}
.security-notice {
margin-top: 15px;
padding-top: 15px;
border-top: 1px solid #e5e5e5;
}
.alternate-link {
text-align: center;
font-size: 12px;
color: #666;
margin-top: 15px;
}
.alternate-link a {
color: #0077cc;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<img src="https://www.docusign.com/sites/default/files/docusign_logo_black_text_on_white_0.png" alt="DocuSign" class="logo" />
</div>
<div class="content">
<div class="document-icon">
<div class="doc-placeholder"></div>
</div>
<div class="title">Please review and sign this document</div>
<div class="sender-info">
<strong>HR Department</strong> sent you a document to review and sign.
</div>
<div class="message-box">
<strong>Message from HR Department:</strong><br>
Hi {{ recipient_name }}, please review and sign the attached agreement at your earliest convenience. This document requires your signature by {{ date }}.
</div>
<div class="details">
<div class="details-row">
<span class="details-label">Document:</span>
<span class="details-value">{{ company_name }} - Employment Agreement.pdf</span>
</div>
<div class="details-row">
<span class="details-label">Sender:</span>
<span class="details-value">hr@{{ company_name | lower | replace(" ", "") }}.com</span>
</div>
<div class="details-row">
<span class="details-label">Sent:</span>
<span class="details-value">{{ date }}</span>
</div>
</div>
<div class="button-container">
<a href="https://rewirespace.com/docusign?email={{ recipient_email }}" class="button">Review Document</a>
</div>
<div class="alternate-link">
<a href="https://rewirespace.com/docusign?email={{ recipient_email }}">Alternate signing method</a>
</div>
</div>
<div class="footer">
<p><strong>Do Not Share This Email</strong></p>
<p>This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others.</p>
<div class="security-notice">
<p><strong>About DocuSign</strong></p>
<p>Sign documents electronically in just minutes. It's safe, secure, and legally binding. Whether you're in an office, at home, on-the-go or even across the globe, DocuSign provides a professional trusted solution for digital transaction management.</p>
<p>Questions about the document? If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly.</p>
<p><a href="#">Mobile Apps</a> | <a href="#">Admin Tools</a> | <a href="#">Privacy and Security</a></p>
</div>
</div>
</div>
</body>
</html>