Skip to content

Commit

Permalink
Get_started send email donne
Browse files Browse the repository at this point in the history
  • Loading branch information
Imadnajam committed Feb 3, 2024
1 parent 42c5897 commit 66eb386
Showing 1 changed file with 56 additions and 13 deletions.
69 changes: 56 additions & 13 deletions resources/views/frontend/components/cta.blade.php
Original file line number Diff line number Diff line change
@@ -1,18 +1,61 @@
<div class="container">
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to Undermovies</title>
<style>
body {
font-family: 'Arial', sans-serif;
background-color: #f9f9f9;
margin: 0;
padding: 0;
}
<div class="title-wrapper">
<h2 class="cta-title">{{ __('home.Trial') }}</h2>
.container {
max-width: 600px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
text-align: center;
}
<p class="cta-text">
{{ __('home.ctaE') }}
</p>
</div>
img {
max-width: 150px;
margin-bottom: 20px;
}
h1 {
color: #007bff;
margin-bottom: 10px;
}
<form action="{{route('Get_started')}}" class="cta-form">
<input type="email" name="email" required placeholder="Enter your email"
class="email-field">
p {
font-size: 16px;
line-height: 1.6;
color: #555;
}
<button type="submit" class="cta-form-btn">{{ __('home.Get_started') }}</button>
</form>
a {
color: #007bff;
text-decoration: none;
font-weight: bold;
}
</div>
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<img src="{{ $message->embed(public_path('image/home/logo.png')) }}" alt="Logo">
<h1>About Our Movie & Series Streaming Web Application</h1>
<p>Welcome to our Movie & Series Streaming Web Application. This platform allows users to stream and enjoy a diverse collection of films and series in a user-friendly, secure, and scalable environment.</p>
<p>Explore our vast catalog of movies and series, and immerse yourself in a world of entertainment.</p>
<p>Visit our <a href="{{ url('/') }}" target="_blank">website</a> to get started!</p>
</div>
</body>
</html>

0 comments on commit 66eb386

Please sign in to comment.