github.com/cozy/cozy-stack@v0.0.0-20240603063001-31110fa4cae1/docs/wellknown.md (about)

     1  [Table of contents](README.md#table-of-contents)
     2  
     3  # Well-known URIs
     4  
     5  ## Change-password
     6  
     7  This endpoint redirects to the settings page where the user can change their
     8  password.
     9  
    10  See https://w3c.github.io/webappsec-change-password-url/
    11  
    12  ### Request
    13  
    14  ```http
    15  GET /.well-known/change-password HTTP/1.1
    16  Host: alice.cozy.example.net
    17  ```
    18  
    19  ### Response
    20  
    21  ```http
    22  HTTP/1.1 302 Found
    23  Location: https://alice-settings.cozy.example.net/#/profile/password
    24  ```