Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update simple SAML documentation to mention the icon. #1505

Merged
merged 3 commits into from
Mar 25, 2021
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions docs/simpleSAMLphp.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,19 @@ $metadata['urn:example:idp'] = array (
);
```

You can also add an optional `icon` property to the metadata. This defines the image that
is displayed in the login dialog box. The icon can be defined as an inline base64 encoded
image or a path to an image file (relative to the webserver root). The login box form
layout is designed for an image that is 272 pixels wide.

```php
<?php
$metadata['urn:example:idp'] = array (
...
'icon' => 'gui/images/[SSO_LOGIN_ICON].png'
)
```

## Web Server Setup

### Apache
Expand Down