1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
| <?php
| // /login/setup.php
| add_filter('jvb_login', 'altr_setup_login');
| function altr_setup_login():array
| {
| return [
| 'login' => [
| 'title' => 'Log in',
| 'description' => ['Log in to your account to see your referral balance and get your unique code!'],
| 'submit' => 'Log in',
| ],
| 'favourites' => [
| 'title' => 'Save your favourites'
| ],
| 'lostpassword' => [
| 'title' => 'Forgot Your Password?',
| 'description' => 'No worries, we\'ll send you a reset link to your email.'
| ],
| 'register' => [
| 'title' => 'Create your Account',
| 'submit' => 'Create Account',
| 'email' => [
| 'subject' => '[Legacy] Finish Creating Your Account'
| ],
| 'success' => [
| 'title' => 'Success!',
| 'description' => [
| 'See your email for next steps.',
| '(If you can\'t find it, check your junk!)',
| ],
| ]
| ],
| 'magic' => [
| 'title' => 'Log in, auto-magically!',
| 'description' => [
| 'Enter your email, click the link in your email, and bibbity bobbity boo - you\'re logged in!'
| ],
| ]
| ];
| }
|
|