diff --git a/at_django_boilerplate/communications/templates/book_appointment.html b/at_django_boilerplate/communications/templates/book_appointment.html index 0056e68..27b371f 100755 --- a/at_django_boilerplate/communications/templates/book_appointment.html +++ b/at_django_boilerplate/communications/templates/book_appointment.html @@ -1,143 +1,317 @@ {% extends 'public_base.html' %} {% load static %} - -{% block title %}Book an Appointment - RegisterYourStartup.com{% endblock %} -{% block meta_description %}Schedule a consultation with our business experts. Book an appointment for personalized guidance on incorporation, compliance, and business growth strategies.{% endblock %} - +{% block title %}Help & Support{% endblock %} {% block content %} +
-
+

- Create Support Ticket + Schedule Appointment

- Are you experiencing issues with the B-42 solution or do you have other questions regarding youticketr B-42 account? You're in the right place! Please complete the form, and we'll get in touch with you as soon as possible! + You are curious and want to learn more, or you have a question about using B-42? Book an appointment with us directly!

-
+
- -
+ +
+ + +
+
+ B42 Logo +
+
+ - -

- Support-Ticket erstellen -

+

+ Meet with Andreas Gschaider +

-
+

+ January 2026 +

- -
- - -
+ +
+ SUNMONTUE + WEDTHUFRISAT +
- -
- - -
+ +
+ + 1 + 2 + 3 - -
- - -
+ 4 + 5 + 6 + 7 + 8 + 9 + 10 - -
- - -
+ 11 + 12 - -
- - -
+ + - -
- + 14 + 15 + 16 + 17 -
- - - - -
-
+ 18 + 19 + 20 + 21 + 22 + 23 + 24 - -
- - -
- - -
- -

- Information on the device used (e.g. model name) -

- -
- - -
- -

- The current version of your operating system -

- -
- - -
- - -
- - + 25 + 26 + 27 + 28 + 29 + 30 + 31
+ + +
+ + +

How long do you need?

+
+ + +
+ + +

What time works best?

+

+ Showing times for January 13, 2026 +

+

+ UTC +05:30 New Delhi, Mumbai, Calcutta +

+ + +
+ + + + + + +
+
+
+
-{% endblock %} \ No newline at end of file +
+ +
+ + +

+ Ready to start your B-42 journey? +

+ + +

+ The Soccer Training Platform +

+ + +

+ Get everything you need for Team success +

+ + + + + + + + + Start now + + +
+ +
+ + + + + +{% endblock %} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +{% comment %}
+ +
+ + +

Log in

+

+ Register in the CoachZone +

+ + +
+ +
+ + +
+ + + 👁 + +
+ + + + + + + + +

+ Don't have an account yet? +

+ + + + +
+
+ or +
+
+ + +
+ + + + + + + + + + +
+ +
+ +
{% endcomment %} diff --git a/at_django_boilerplate/communications/templates/team_create.html b/at_django_boilerplate/communications/templates/team_create.html new file mode 100644 index 0000000..6008b8c --- /dev/null +++ b/at_django_boilerplate/communications/templates/team_create.html @@ -0,0 +1,207 @@ +{% extends 'public_base.html' %} +{% load static %} + +{% block title %}Book an Appointment - RegisterYourStartup.com{% endblock %} +{% block meta_description %}Schedule a consultation with our business experts. Book an appointment for personalized guidance on incorporation, compliance, and business growth strategies.{% endblock %} + +{% block content %} + +
+
+ + +
+ + +

+ B42 India for teams - Create a team now for free +

+
+ + +
+
+
+
+ + +
+

Who are you?

+ +
+ + + + +
+
+ + + + + + + + + +
+

+ Who are you? +

+ +
+ + +
+ + Recommendation +
+ + +
+ + B42 India India Player App +
+ + +
+ + Google Search +
+ +
+ + Google Search +
+ + +
+ Other +
+ +
+
+ + + + +
+ + + +
+ + + + + + +{% endblock%} diff --git a/at_django_boilerplate/communications/templates/ticket.html b/at_django_boilerplate/communications/templates/ticket.html index e69de29..13b5baa 100644 --- a/at_django_boilerplate/communications/templates/ticket.html +++ b/at_django_boilerplate/communications/templates/ticket.html @@ -0,0 +1,192 @@ +{% extends 'public_base.html' %} +{% load static %} + +{% block title %}Book an Appointment - RegisterYourStartup.com{% endblock %} +{% block meta_description %}Schedule a consultation with our business experts. Book an appointment for personalized guidance on incorporation, compliance, and business growth strategies.{% endblock %} + +{% block content %} + +
+ +
+

+ Create Support Ticket +

+

+ Are you experiencing issues with the B-42 solution or do you have other questions regarding youticketr B-42 account? You're in the right place! Please complete the form, and we'll get in touch with you as soon as possible! +

+
+ +
+ + +
+ + +

+ Support-Ticket erstellen +

+ +
+ + +
+ + +
+ + +
+ + +
+ + +
+ + +
+ + +
+ + +
+ + +
+ + +
+ + +
+ + +
+ + + + +
+
+ + +
+ + +
+ + +
+ +

+ Information on the device used (e.g. model name) +

+ +
+ + +
+ +

+ The current version of your operating system +

+ +
+ + +
+ + +
+ + + +
+
+
+
+ +
+ +
+ + +

+ Ready to start your B-42 journey? +

+ + +

+ The Soccer Training Platform +

+ + +

+ Get everything you need for Team success +

+ + + + + + + + + Start now + + +
+ +
+ +{% endblock %} \ No newline at end of file diff --git a/at_django_boilerplate/communications/urls.py b/at_django_boilerplate/communications/urls.py index 67e037a..574b3d0 100755 --- a/at_django_boilerplate/communications/urls.py +++ b/at_django_boilerplate/communications/urls.py @@ -5,4 +5,5 @@ urlpatterns = [ path('contact/', views.ContactView.as_view(), name='contact_us_form'), path('book-appointment/', views.AppointmentView.as_view(), name='book_appointment'), path('ticket/', views.Ticket.as_view(), name='ticket'), + path('team-create/', views.TeamCreate.as_view(), name='team_create'), ] \ No newline at end of file diff --git a/at_django_boilerplate/communications/views.py b/at_django_boilerplate/communications/views.py index db10298..d83b9b3 100755 --- a/at_django_boilerplate/communications/views.py +++ b/at_django_boilerplate/communications/views.py @@ -194,3 +194,6 @@ Please confirm or follow up with the user. class Ticket(TemplateView): template_name = 'ticket.html' +class TeamCreate(TemplateView): + template_name = 'team_create.html' + diff --git a/at_django_boilerplate/core/templates/company/help_and_support.html b/at_django_boilerplate/core/templates/company/help_and_support.html index e579c71..fc5266c 100644 --- a/at_django_boilerplate/core/templates/company/help_and_support.html +++ b/at_django_boilerplate/core/templates/company/help_and_support.html @@ -52,7 +52,7 @@

Write to us if you have technical problems.

- + Create ticket @@ -69,7 +69,7 @@ Interested in the B-42 India solution?
Book an appointment with us directly here!

- + make an appointment @@ -122,7 +122,7 @@

All important questions about the B-42 India Performance App & B-42 India Coach Zone

- + View FAQs @@ -156,7 +156,7 @@

This is how coaches, teams and athletes successfully use the B-42 India app.

- + Read case studies @@ -216,7 +216,7 @@ Fitness, rehabilitation and ball-specific training for ambitious football players in a modern mobile app.

- + Create ticket diff --git a/at_django_boilerplate/core/templates/company/ourcoreteam.html b/at_django_boilerplate/core/templates/company/ourcoreteam.html index c771ca7..e545291 100755 --- a/at_django_boilerplate/core/templates/company/ourcoreteam.html +++ b/at_django_boilerplate/core/templates/company/ourcoreteam.html @@ -5,6 +5,7 @@ {% block content %} +
@@ -26,10 +27,10 @@ The app for successful coaches & teams that play to win.

@@ -156,7 +157,7 @@
-
+

Fit team - without injuries

diff --git a/templates/includes/footer.html b/templates/includes/footer.html index 23fbec6..cf2ddd7 100755 --- a/templates/includes/footer.html +++ b/templates/includes/footer.html @@ -9,7 +9,7 @@ B42 Logo -

© 2025 SFY GmbH

+

© 2025 SFY GmbH

diff --git a/templates/public_base.html b/templates/public_base.html index 104a841..4844f42 100644 --- a/templates/public_base.html +++ b/templates/public_base.html @@ -57,7 +57,7 @@ -
+
{% block content %} {% endblock %}