> ## Documentation Index
> Fetch the complete documentation index at: https://docs.hfrsite.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Login

> Login for user

Things you can do:

* Login to hfr site to get admin/client access

<ParamField body="email" type="string" required>
  This will be a unique name
</ParamField>

<ParamField body="password" required type="string">
  Password must me at least 8 character
</ParamField>

<RequestExample>
  ```bash cURL
  curl -X 'POST' \
    'http://localhost:8080/auth/login' \
    -H 'accept: application/json' \
    -H 'Content-Type: application/json' \
    -d '{
    "email": "string",
    "password": "string"
  }'
  ```

  ```bash JavaScript
  await axios.post(url, {
    email: "shoaib@techoneplus.com",
    password: "password",
  })
  ```
</RequestExample>
