diff --git a/CHANGELOG.md b/CHANGELOG.md index 1659202..6b93cab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ v1.7 - Fix GH-15 Add password import from CSV - Fix FLEXIAPI-242 Add stricter validation for the AccountCreationToken Push Notification endpoint - Fix FLEXIAPI-241 Add a /push-notification endpoint to send custom push notifications to the Flexisip Pusher +- Fix FLEXIAPI-244 Remove faulty middleware - Fix FLEXIAPI-250 Allow Spaces to be declared without a subdomain v1.6 diff --git a/flexiapi/resources/views/account/register/email.blade.php b/flexiapi/resources/views/account/register/email.blade.php index 6d67a6a..321d3f1 100644 --- a/flexiapi/resources/views/account/register/email.blade.php +++ b/flexiapi/resources/views/account/register/email.blade.php @@ -15,6 +15,7 @@
+ In lowercase letters @include('parts.errors', ['name' => 'username'])
diff --git a/flexiapi/resources/views/account/register/phone.blade.php b/flexiapi/resources/views/account/register/phone.blade.php index c569bc3..8a4e280 100644 --- a/flexiapi/resources/views/account/register/phone.blade.php +++ b/flexiapi/resources/views/account/register/phone.blade.php @@ -15,6 +15,7 @@
+ In lowercase letters @include('parts.errors', ['name' => 'username'])
diff --git a/flexiapi/resources/views/parts/terms.blade.php b/flexiapi/resources/views/parts/terms.blade.php index 1e1d4b4..cd9807b 100644 --- a/flexiapi/resources/views/parts/terms.blade.php +++ b/flexiapi/resources/views/parts/terms.blade.php @@ -1,13 +1,16 @@
- - @include('parts.errors', ['name' => 'terms']) + +
+

+ I accept the + Terms and Conditions + @if (config('app.privacy_policy_url', null) != null) + and Privacy policy + @endif +

+ @include('parts.errors', ['name' => 'terms']) +
@include('parts.captcha')