-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
56 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |