mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-24 01:49:15 -04:00
27 lines
692 B
HTML
27 lines
692 B
HTML
{% extends "base.html" %}
|
|
{% from "components/page-header.html" import page_header %}
|
|
|
|
{% block per_page_title %}
|
|
Billing details
|
|
{% endblock %}
|
|
|
|
{% block content_column_content %}
|
|
|
|
{{ page_header('Billing details') }}
|
|
|
|
<p>
|
|
<a class="usa-link" href="{{ url_for('.sign_in', next=url_for('.billing_details')) }}">Sign in</a> to see our:
|
|
</p>
|
|
|
|
<ul class="usa-list usa-list--bullet">
|
|
<li>supplier details</li>
|
|
<li>bank details</li>
|
|
<li>invoice address</li>
|
|
</ul>
|
|
|
|
<p>
|
|
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.
|
|
</p>
|
|
|
|
{% endblock %}
|