## Custom Page
### Displaying the warning
We can display the warning by reading the `originUrl` query parameter:
```js
const urlParams = new URLSearchParams(window.location.search);
const originUrl = urlParams.get('originUrl');
```
and displaying it on the page.
```html
Warning
You are about to visit a website that has been flagged as malicious by
ChainPatrol.
Origin URL: {{ originUrl }}
```
### Allowing the user to Continue
If the user wishes to continue, we can allow them to do so by adding a button to the warning page that will redirect them
back to the original website
```html
Continue at your own risk
```
To prevent the user from seeing the warning again, we can add the domain to a
list of domains to ignore. It's up to you how you want to store this data, but
we recommended using the browser's storage APIs or equivalent on other
platforms.
#### Allowing the user to report a false positive
If the user believes the website is not malicious, we can allow them to report a false positive
by adding a button to the warning page that will redirect them to the [ChainPatrol dispute page](https://app.chainpatrol.io/dispute).
```html
Report a false positive
```