-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathemail-template-simple.html
More file actions
158 lines (136 loc) · 5.04 KB
/
Copy pathemail-template-simple.html
File metadata and controls
158 lines (136 loc) · 5.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>P³ Lending - Welcome</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #333;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
.container {
max-width: 600px;
margin: 0 auto;
background-color: #ffffff;
}
.header {
background-color: #667eea;
color: white;
padding: 30px 20px;
text-align: center;
}
.logo {
font-size: 36px;
font-weight: bold;
margin-bottom: 10px;
}
.content {
padding: 30px 20px;
}
.button {
display: inline-block;
background-color: #667eea;
color: white;
text-decoration: none;
padding: 15px 30px;
border-radius: 5px;
font-weight: bold;
margin: 20px 0;
}
.footer {
background-color: #2d3748;
color: #a0aec0;
padding: 20px;
text-align: center;
font-size: 12px;
}
.feature {
margin: 20px 0;
padding: 15px;
background-color: #f8f9fa;
border-left: 4px solid #667eea;
}
.stats {
background-color: #f8f9fa;
padding: 20px;
margin: 20px 0;
text-align: center;
}
.stat {
display: inline-block;
margin: 0 20px;
text-align: center;
}
.stat-number {
font-size: 24px;
font-weight: bold;
color: #667eea;
}
.stat-label {
font-size: 12px;
color: #666;
}
</style>
</head>
<body>
<div class="container">
<!-- Header -->
<div class="header">
<div class="logo">P³ Lending</div>
<div>Decentralized Peer-to-Peer Bitcoin Lending</div>
</div>
<!-- Content -->
<div class="content">
<h2>Welcome to P³ Lending! 🚀</h2>
<p>You're now part of the revolutionary P³ Lending platform - where traditional banking meets the power of blockchain technology.</p>
<div class="feature">
<strong>🔒 Secure & Transparent</strong><br>
Smart contracts ensure your funds are always safe with full transparency
</div>
<div class="feature">
<strong>🤖 AI Risk Analysis</strong><br>
Advanced AI monitors blockchain data and market conditions for optimal lending
</div>
<div class="feature">
<strong>⭐ Reputation System</strong><br>
Build your credit score through successful lending and borrowing history
</div>
<div class="stats">
<div class="stat">
<div class="stat-number">$2.4M+</div>
<div class="stat-label">Total Volume</div>
</div>
<div class="stat">
<div class="stat-number">1,247</div>
<div class="stat-label">Active Users</div>
</div>
<div class="stat">
<div class="stat-number">99.7%</div>
<div class="stat-label">Success Rate</div>
</div>
</div>
<div style="text-align: center;">
<a href="https://p3lending.space" class="button">Start Lending Today</a>
</div>
<p>Ready to get started? Complete your profile setup and begin your journey into the world of decentralized finance.</p>
</div>
<!-- Footer -->
<div class="footer">
<strong>P³ Lending</strong><br>
Revolutionizing peer-to-peer Bitcoin lending with AI-powered risk analysis and smart contracts.<br><br>
<a href="https://discord.gg/FnfhmdVmCu" style="color: #667eea;">Discord</a> |
<a href="https://www.reddit.com/user/PackieAI/" style="color: #667eea;">Reddit</a> |
<a href="https://github.com/Mattjhagen/P3-Lending/tree/main" style="color: #667eea;">GitHub</a> |
<a href="https://www.linkedin.com/in/mattjhagen/" style="color: #667eea;">LinkedIn</a><br><br>
You received this email because you signed up for P³ Lending.<br>
<a href="https://p3lending.space/unsubscribe" style="color: #667eea;">Unsubscribe</a> |
<a href="https://p3lending.space/privacy-policy.html" style="color: #667eea;">Privacy Policy</a>
</div>
</div>
</body>
</html>