diff --git a/docs/resources/simplesamlphp-sp/screenshot-example.png b/docs/resources/simplesamlphp-sp/screenshot-example.png
index 7a9336a424e987a694fb6015bfcc0c5c89eee132..69e65f07a05060726b04e1a1e60ee918da53876a 100644
Binary files a/docs/resources/simplesamlphp-sp/screenshot-example.png and b/docs/resources/simplesamlphp-sp/screenshot-example.png differ
diff --git a/docs/simplesamlphp-sp.md b/docs/simplesamlphp-sp.md
index e9ed8e7139268287c8c44bc09406de4842418b2b..f8329390eebf89c7a5b6ad170560fb03a21268bc 100644
--- a/docs/simplesamlphp-sp.md
+++ b/docs/simplesamlphp-sp.md
@@ -1,13 +1,6 @@
 SimpleSAMLphp Service Provider QuickStart
 =========================================
 
-<!-- 
-	This file is written in Markdown syntax. 
-	For more information about how to use the Markdown syntax, read here:
-	http://daringfireball.net/projects/markdown/syntax
--->
-
-
 <!-- {{TOC}} -->
 
 This guide will describe how to configure SimpleSAMLphp as a service provider (SP). You should previously have installed SimpleSAMLphp as described in [the SimpleSAMLphp installation instructions](simplesamlphp-install).
@@ -128,8 +121,8 @@ Test the SP
 -----------------------------
 
 After the metadata is configured on the IdP, you should be able to test the configuration.
-The installation page of SimpleSAMLphp has a link to test authentication sources.
-When you click the link, you should receive a list of authentication sources, including the one you have created for the SP.
+The admin module of SimpleSAMLphp has a tab to test authentication sources.
+There you should a list of authentication sources, including the one you have created for the SP.
 
 After you click the link for that authentication source, you will be redirected to the IdP.
 After entering your credentials, you should be redirected back to the test page.
@@ -137,8 +130,7 @@ The test page should contain a list of your attributes:
 
 ![Screenshot of the status page after a user has succesfully authenticated](resources/simplesamlphp-sp/screenshot-example.png)
 
-For a better looking, more advanced Discovery Service with tabs and live search, you may want to use the `discopower` module
-contained in the SimpleSAMLphp distribution.
+For a better looking, more advanced Discovery Service with tabs and live search, you may want to use the `discopower` module.
 
 Integrating authentication with your own application
 ----------------------------------------------------
@@ -148,13 +140,9 @@ The API is documented in [the SP API reference](simplesamlphp-sp-api).
 For those web resources you want to protect, you must add a few
 lines of PHP code:
 
--   Register the SimpleSAMLphp classes with the PHP autoloader.
-
--  
-    Require authentication of the user for those places it is required.
-
--  
-    Access the users attributes.
+- Register the SimpleSAMLphp classes with the PHP autoloader.
+- Require authentication of the user for those places it is required.
+- Access the users attributes.
 
 Example code: