Fix FLEXIAPI-244 Remove faulty middleware

This commit is contained in:
Timothée Jaussoin 2024-12-17 10:34:50 +00:00
parent d86e297b81
commit 5f0595bbaa
4 changed files with 14 additions and 8 deletions

View file

@ -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

View file

@ -15,6 +15,7 @@
<div>
<input placeholder="username" name="username" type="text" value="{{ old('username') }}" required>
<label for="username">Username</label>
<small>In lowercase letters</small>
@include('parts.errors', ['name' => 'username'])
</div>

View file

@ -15,6 +15,7 @@
<div>
<input placeholder="username" name="username" type="text" value="{{ old('username') }}">
<label for="username">Username</label>
<small>In lowercase letters</small>
@include('parts.errors', ['name' => 'username'])
</div>
<div>

View file

@ -1,13 +1,16 @@
<div class="large checkbox">
<input id="terms" name="terms" type="checkbox">
<label for="terms">
I accept the
<a href="{{ config('app.terms_of_use_url') }}">Terms and Conditions</a>
@if (config('app.privacy_policy_url', null) != null)
and <a href="{{ config('app.privacy_policy_url') }}">Privacy policy</a>
@endif
</label>
@include('parts.errors', ['name' => 'terms'])
<label for="terms"></label>
<div>
<p>
I accept the
<a href="{{ config('app.terms_of_use_url') }}">Terms and Conditions</a>
@if (config('app.privacy_policy_url', null) != null)
and <a href="{{ config('app.privacy_policy_url') }}">Privacy policy</a>
@endif
</p>
@include('parts.errors', ['name' => 'terms'])
</div>
</div>
@include('parts.captcha')