In the Azure API Management developer portal, you have the ability to customize the sign-up form, including the terms of service section. By default, the terms of service field is a text field where you can enter plain text. If you're seeing HTML code instead of a link, it suggests that the HTML is being displayed as plain text.
To add a clickable link to the terms of service in the sign-up form, you'll need to use HTML. Here's how you can do it:
Go to the Azure portal (portal.azure.com) and navigate to your API Management instance.
In the left-hand menu, click on "Developer portal" to access the developer portal configuration.
In the developer portal, click on the "Content" tab in the top navigation bar.
In the content editor, locate the sign-up form content. It might be in a widget or a specific page, depending on your portal configuration.
Edit the content for the terms of service section and switch to HTML mode if available.
Enter the HTML code for a link using the <a>
tag. For example:
htmlCopy code
<a href="https://example.com/terms" target="_blank">Terms of Service</a>
Replace "https://example.com/terms" with the actual URL of your terms of service page.
Save the changes.
After following these steps, the terms of service section should display a clickable link instead of the HTML code. Users will be able to click on the link and be directed to the specified terms of service page.