2021-08-27 11:44:19 +01:00
|
|
|
{% extends "content_template.html" %}
|
|
|
|
|
{% from "components/page-header.html" import page_header %}
|
|
|
|
|
|
|
|
|
|
{% block per_page_title %}
|
|
|
|
|
Billing details
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block content_column_content %}
|
|
|
|
|
|
|
|
|
|
{{ page_header('Billing details') }}
|
|
|
|
|
|
2023-06-06 15:28:24 -04:00
|
|
|
<p>
|
2023-08-08 16:19:17 -04:00
|
|
|
<a class="usa-link" href="{{ url_for('.sign_in', next=url_for('.billing_details')) }}">Sign in</a> to see our:
|
2021-08-27 11:44:19 +01:00
|
|
|
</p>
|
|
|
|
|
|
2023-08-25 15:31:44 -04:00
|
|
|
<ul class="usa-list usa-list--bullet">
|
2021-08-27 11:44:19 +01:00
|
|
|
<li>supplier details</li>
|
|
|
|
|
<li>bank details</li>
|
|
|
|
|
<li>invoice address</li>
|
|
|
|
|
</ul>
|
|
|
|
|
|
2023-06-06 15:28:24 -04:00
|
|
|
<p>
|
2022-12-20 09:44:33 -05:00
|
|
|
You can use this information to add the Cabinet Office as a supplier. Your organization may need to do this before you can raise a purchase order.
|
2021-08-27 11:44:19 +01:00
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|