mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-01-09 23:41:10 +00:00
Combination of initial files and some new code for login and user registration.
This commit is contained in:
19
app/views/emails/user/register-html.blade.php
Normal file
19
app/views/emails/user/register-html.blade.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<html>
|
||||
<head>
|
||||
<style type="text/css">
|
||||
* {font-size:Arial;}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p>
|
||||
Hi!
|
||||
</p>
|
||||
<p>
|
||||
Here's the password you need to login at Firefly: <strong>{{$password}}</strong>
|
||||
</p>
|
||||
<p>
|
||||
Cya!
|
||||
</p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
5
app/views/emails/user/register-text.blade.php
Normal file
5
app/views/emails/user/register-text.blade.php
Normal file
@@ -0,0 +1,5 @@
|
||||
Hi!
|
||||
|
||||
Here's the password you need to login at Firefly: {{$password}}
|
||||
|
||||
Cya!
|
||||
19
app/views/emails/user/verify-html.blade.php
Normal file
19
app/views/emails/user/verify-html.blade.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<html>
|
||||
<head>
|
||||
<style type="text/css">
|
||||
* {font-size:Arial;}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p>
|
||||
Hi!
|
||||
</p>
|
||||
<p>
|
||||
To verify your registration, please <a href="{{route('verify',$verification)}}">verify your e-mail address</a>.
|
||||
</p>
|
||||
<p>
|
||||
Cya!
|
||||
</p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
7
app/views/emails/user/verify-text.blade.php
Normal file
7
app/views/emails/user/verify-text.blade.php
Normal file
@@ -0,0 +1,7 @@
|
||||
Hi!
|
||||
|
||||
To verify your registration, please verify your e-mail address:
|
||||
|
||||
{{route('verify',$verification)}}
|
||||
|
||||
Cya!
|
||||
Reference in New Issue
Block a user