Skip to content

Instantly share code, notes, and snippets.

@thinkphp
Created July 27, 2025 15:47
Show Gist options
  • Save thinkphp/b2989e80a5ce43b67af5d339ac039a93 to your computer and use it in GitHub Desktop.
Save thinkphp/b2989e80a5ce43b67af5d339ac039a93 to your computer and use it in GitHub Desktop.
newsletter html
<!DOCTYPE html>
<html lang="ro">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Newsletter Web Component Demo</title>
<style>
body {
margin: 0;
padding: 20px;
font-family: Arial, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
}
.demo-content {
max-width: 800px;
margin: 0 auto;
background: white;
padding: 40px;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
margin-bottom: 40px;
}
h1 {
text-align: center;
color: #2c3e50;
margin-bottom: 30px;
}
.demo-section {
margin: 40px 0;
padding: 20px;
border: 2px dashed #e1e8ed;
border-radius: 10px;
}
.demo-section h3 {
color: #667eea;
margin-bottom: 15px;
}
</style>
</head>
<body>
<div class="demo-content">
<h1>Newsletter Web Component</h1>
<div class="demo-section">
<h3>Newsletter Standard</h3>
<simple-newsletter
title="Subscriber la Newsletter"
description="Primeste oferte speciale și noutăți!"
api-url="newsletter.php">
</simple-newsletter>
</div>
<div class="demo-section">
<h3>Newsletter Compact</h3>
<simple-newsletter
title="📧 Newsletter"
description="Oferte exclusive!"
api-url="newsletter.php"
variant="compact">
</simple-newsletter>
</div>
<div class="demo-section">
<h3>Newsletter Footer</h3>
<simple-newsletter
title="🚀 Rămâi conectat!"
description="Alătură-te comunității noastre!"
api-url="newsletter.php"
variant="footer">
</simple-newsletter>
</div>
</div>
<script src="newsletter.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment