Beyond theme - login form

HELP Does anyone know where I can find the code for my login form that was on my website, but has now disappeared?

https://heaveninearth.com.au/pages/wholesale

The below section is missing

@HIEa

The form is currently is inside the page is registration form and its coming from a third party platform, YOu just need to edit the page and from the shopify admin and see if the code is there.

Thanks

Thank you however I dont quite understand where I find all this information?

Is it under pages, wholesale?

The login page is for the customers of the store.if you created a custom wholesale login for then it should be in that page

Is it possible to direct me to that page?

this is the code

{%- liquid
assign reset_instructions_t = ‘customer.login.reset_instructions_html’ | t
assign title_t = ‘customer.login.page_title’ | t
assign email_t = ‘customer.login.email’ | t
assign password_t = ‘customer.login.password’ | t
assign forgot_password_t = ‘customer.login.forgot_password’ | t
assign sign_in_t = ‘customer.login.sign_in’ | t
assign new_account_t = ‘customer.login.new_account’ | t
assign reset_password_t = ‘customer.login.reset_password’ | t
assign guest_title_t = ‘customer.login.guest_title’ | t
assign guest_continue_t = ‘customer.login.guest_continue’ | t
assign submit_t = ‘customer.login.submit’ | t
assign cancel_t = ‘customer.login.cancel’ | t

render ‘section-assets’, name: ‘customer’, type: ‘style’
-%}

{{- reset_instructions_t -}}

{{- title_t -}}

{%- form ‘customer_login’ -%}
{{- form.errors | default_errors -}}

{{- email_t -}}

{%- if form.password_needed -%}

{{- password_t -}}

{{- forgot_password_t -}}

{%- endif -%}
{{- sign_in_t -}}
{{ new_account_t }}
{%- endform -%}

{{- reset_password_t -}}

{{- reset_instructions_t -}}

{%- form ‘recover_customer_password’ -%}
{{- form.errors | default_errors -}}

{{- email_t -}}
{{- submit_t -}} {{- cancel_t -}}

{%- if form.posted_successfully? -%}

{%- endif -%}
{%- endform -%}

{%- if shop.checkout.guest_login -%}

{{ guest_title_t }}

{%- form ‘guest_login’ -%}

{%- endform -%}

{%- endif -%}