Initialer Laravel Commit für BetiX
This commit is contained in:
90
resources/views/emails/layout.blade.php
Normal file
90
resources/views/emails/layout.blade.php
Normal file
@@ -0,0 +1,90 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Betix Notification</title>
|
||||
<style>
|
||||
body {
|
||||
background-color: #020202;
|
||||
color: #ffffff;
|
||||
font-family: 'Arial', sans-serif;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.container {
|
||||
max-width: 600px;
|
||||
margin: 0 auto;
|
||||
padding: 40px 20px;
|
||||
}
|
||||
.header {
|
||||
text-align: center;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
.logo {
|
||||
font-size: 24px;
|
||||
font-weight: 900;
|
||||
color: #ffffff;
|
||||
letter-spacing: 2px;
|
||||
text-decoration: none;
|
||||
}
|
||||
.logo span {
|
||||
color: #ff007a;
|
||||
}
|
||||
.card {
|
||||
background-color: #0a0a0a;
|
||||
border: 1px solid #151515;
|
||||
border-radius: 16px;
|
||||
padding: 40px;
|
||||
box-shadow: 0 10px 40px rgba(0,0,0,0.5);
|
||||
}
|
||||
.title {
|
||||
font-size: 20px;
|
||||
font-weight: 800;
|
||||
margin-bottom: 20px;
|
||||
color: #ffffff;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
.text {
|
||||
color: #888888;
|
||||
line-height: 1.6;
|
||||
margin-bottom: 30px;
|
||||
font-size: 14px;
|
||||
}
|
||||
.btn {
|
||||
display: inline-block;
|
||||
background: linear-gradient(90deg, #ff007a, #be005b);
|
||||
color: #ffffff;
|
||||
text-decoration: none;
|
||||
padding: 14px 30px;
|
||||
border-radius: 8px;
|
||||
font-weight: 700;
|
||||
font-size: 14px;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 1px;
|
||||
box-shadow: 0 0 20px rgba(255, 0, 122, 0.4);
|
||||
}
|
||||
.footer {
|
||||
text-align: center;
|
||||
margin-top: 40px;
|
||||
color: #444444;
|
||||
font-size: 12px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="header">
|
||||
<a href="{{ config('app.url') }}" class="logo">BETI<span>X</span></a>
|
||||
</div>
|
||||
|
||||
<div class="card">
|
||||
@yield('content')
|
||||
</div>
|
||||
|
||||
<div class="footer">
|
||||
© {{ date('Y') }} Betix Protocol. All rights reserved.
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user